diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 60b60c3..11823ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -20,8 +20,41 @@ jobs: | |||
20 | - name: make | 20 | - name: make |
21 | run: make | 21 | run: make |
22 | 22 | ||
23 | codespell: | ||
24 | name: codespell | ||
25 | strategy: | ||
26 | fail-fast: false | ||
27 | runs-on: ubuntu-latest | ||
28 | steps: | ||
29 | - name: Checkout | ||
30 | uses: actions/checkout@v3 | ||
31 | - name: Codespell | ||
32 | uses: codespell-project/actions-codespell@master | ||
33 | with: | ||
34 | skip: "./.git,./.gitignore,./ABOUT-NLS,*.po,./gl,./po,./tools/squid.conf,./build-aux/ltmain.sh" | ||
35 | ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners | ||
36 | check_filenames: true | ||
37 | check_hidden: true | ||
38 | # super-linter: | ||
39 | # name: super-linter | ||
40 | # strategy: | ||
41 | # fail-fast: false | ||
42 | # runs-on: ubuntu-latest | ||
43 | # steps: | ||
44 | # - name: Checkout | ||
45 | # uses: actions/checkout@v3 | ||
46 | # - name: Lint Code Base | ||
47 | # uses: github/super-linter@v5.0.0 | ||
48 | # env: | ||
49 | # DEFAULT_BRANCH: master | ||
50 | # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
51 | # macos: | ||
52 | # ... | ||
23 | linux: | 53 | linux: |
24 | needs: build-test | 54 | needs: |
55 | - build-test | ||
56 | - codespell | ||
57 | # - super-linter | ||
25 | runs-on: ubuntu-latest | 58 | runs-on: ubuntu-latest |
26 | name: Running tests on ${{ matrix.distro }} | 59 | name: Running tests on ${{ matrix.distro }} |
27 | strategy: | 60 | strategy: |