summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLorenz Kästle <lorenz.kaestle@netways.de>2023-04-28 09:00:05 (GMT)
committerLorenz Kästle <lorenz.kaestle@netways.de>2023-04-28 09:00:05 (GMT)
commit34c4d13edd8ece1e928c578974218c10d25600c4 (patch)
tree96eaf64dc46c8b785d437250d42471180597a699 /.github/workflows
parente4ddeb7bb722b50613108da1cb51a48e84068701 (diff)
parent7cb82e6486e662fa4d2530523787d3eced266545 (diff)
downloadmonitoring-plugins-34c4d13edd8ece1e928c578974218c10d25600c4.tar.gz
Merge branch 'master' into RincewindsHat-patch-1
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml35
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: