summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorBjörn Berg <32747776+MisterMountain@users.noreply.github.com>2023-05-02 07:31:32 (GMT)
committerGitHub <noreply@github.com>2023-05-02 07:31:32 (GMT)
commite14f1ad7c35504b97f81b1b33a5533e57c605fc2 (patch)
treea59d292d928c123ad862776f344918035466c817 /.github/workflows/test.yml
parent3dc677e4f1f990e7b26bc714a02608070379cf85 (diff)
parenta4be133f01a231dc45c98aabed35f96d6f826fd7 (diff)
downloadmonitoring-plugins-e14f1ad7c35504b97f81b1b33a5533e57c605fc2.tar.gz
Merge branch 'monitoring-plugins:master' into fix_version_return_code
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 80d49f7..e825eb3 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -7,9 +7,40 @@ on:
7 pull_request: 7 pull_request:
8 8
9jobs: 9jobs:
10 codespell:
11 name: codespell
12 strategy:
13 fail-fast: false
14 runs-on: ubuntu-latest
15 steps:
16 - name: Checkout
17 uses: actions/checkout@v3
18 - name: Codespell
19 uses: codespell-project/actions-codespell@master
20 with:
21 skip: "./.git,./.gitignore,./ABOUT-NLS,*.po,./gl,./po,./tools/squid.conf,./build-aux/ltmain.sh"
22 ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners
23 check_filenames: true
24 check_hidden: true
25# super-linter:
26# name: super-linter
27# strategy:
28# fail-fast: false
29# runs-on: ubuntu-latest
30# steps:
31# - name: Checkout
32# uses: actions/checkout@v3
33# - name: Lint Code Base
34# uses: github/super-linter@v5.0.0
35# env:
36# DEFAULT_BRANCH: master
37# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10# macos: 38# macos:
11# ... 39# ...
12 linux: 40 linux:
41 needs:
42 - codespell
43# - super-linter
13 runs-on: ubuntu-latest 44 runs-on: ubuntu-latest
14 name: Running tests on ${{ matrix.distro }} 45 name: Running tests on ${{ matrix.distro }}
15 strategy: 46 strategy: