diff options
| -rw-r--r-- | .github/workflows/test.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e825eb34..11823aee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
| @@ -7,6 +7,19 @@ on: | |||
| 7 | pull_request: | 7 | pull_request: |
| 8 | 8 | ||
| 9 | jobs: | 9 | jobs: |
| 10 | build-test: | ||
| 11 | runs-on: ubuntu-latest | ||
| 12 | steps: | ||
| 13 | - uses: actions/checkout@v3 | ||
| 14 | - name: Install gettext | ||
| 15 | run: sudo apt-get install gettext | ||
| 16 | - name: setup | ||
| 17 | run: ./tools/setup | ||
| 18 | - name: CFLAGS="-Wall -Wextra -std=c90" configure | ||
| 19 | run: ./configure | ||
| 20 | - name: make | ||
| 21 | run: make | ||
| 22 | |||
| 10 | codespell: | 23 | codespell: |
| 11 | name: codespell | 24 | name: codespell |
| 12 | strategy: | 25 | strategy: |
| @@ -39,6 +52,7 @@ jobs: | |||
| 39 | # ... | 52 | # ... |
| 40 | linux: | 53 | linux: |
| 41 | needs: | 54 | needs: |
| 55 | - build-test | ||
| 42 | - codespell | 56 | - codespell |
| 43 | # - super-linter | 57 | # - super-linter |
| 44 | runs-on: ubuntu-latest | 58 | runs-on: ubuntu-latest |
