aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-12 20:14:49 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-14 04:32:51 -0300
commit894b1456a8f80c508bacb31213139090cd232dbd (patch)
tree04ed2f5dfab07aceb4ccc452d1d8424d00abd66e /.github/workflows
parentci: move codespell job into its own workflow (diff)
downloadfirejail-894b1456a8f80c508bacb31213139090cd232dbd.tar.gz
firejail-894b1456a8f80c508bacb31213139090cd232dbd.tar.zst
firejail-894b1456a8f80c508bacb31213139090cd232dbd.zip
ci: run ./configure in codespell
Since it runs through make, the target may depend on variables that are defined by ./configure (such as the ones in config.mk).
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/codespell.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index aab0674ec..19ae6f34d 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -33,6 +33,8 @@ jobs:
33 run: sudo apt-get update -qy 33 run: sudo apt-get update -qy
34 - name: install dependencies 34 - name: install dependencies
35 run: sudo apt-get install -qy codespell 35 run: sudo apt-get install -qy codespell
36 - name: configure
37 run: ./configure || (cat config.log; exit 1)
36 - run: codespell --version 38 - run: codespell --version
37 - name: codespell 39 - name: codespell
38 run: make codespell 40 run: make codespell