diff options
| author | waja <waja@users.noreply.github.com> | 2024-02-23 14:25:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-23 14:25:44 +0100 |
| commit | 0c01f2946ed21f5e7977b5503f9c9f00e72fd708 (patch) | |
| tree | 12970968285d666e22d7d06644804edd2bf7d7e7 /.github/workflows/spellcheck.yml | |
| parent | f6d7bf86563e53aeca1f764a4c61e6025049406a (diff) | |
| download | monitoring-plugins-0c01f2946ed21f5e7977b5503f9c9f00e72fd708.tar.gz | |
CI specfile (#1894)
* Adding spec file and github pipeline for testing
* Restructure github pipelines for more clarity
* Add build tests for several RPM based distributions
---------
Co-authored-by: Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>
Diffstat (limited to '.github/workflows/spellcheck.yml')
| -rw-r--r-- | .github/workflows/spellcheck.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml new file mode 100644 index 00000000..72f7c7eb --- /dev/null +++ b/.github/workflows/spellcheck.yml | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | --- | ||
| 2 | name: Spellcheck | ||
| 3 | |||
| 4 | on: | ||
| 5 | # Run for pushes on any branch | ||
| 6 | push: | ||
| 7 | branches: | ||
| 8 | - '*' | ||
| 9 | # Run for any PRs | ||
| 10 | pull_request: | ||
| 11 | |||
| 12 | jobs: | ||
| 13 | codespell: | ||
| 14 | name: codespell | ||
| 15 | strategy: | ||
| 16 | fail-fast: false | ||
| 17 | runs-on: ubuntu-latest | ||
| 18 | steps: | ||
| 19 | - name: Checkout | ||
| 20 | uses: actions/checkout@v4 | ||
| 21 | - name: Codespell | ||
| 22 | uses: codespell-project/actions-codespell@v2 | ||
| 23 | with: | ||
| 24 | skip: "./.git,./.gitignore,./ABOUT-NLS,./gl,./tools/squid.conf,./build-aux/ltmain.sh,THANKS.in" | ||
| 25 | ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners,esponse,slac | ||
| 26 | check_filenames: true | ||
| 27 | check_hidden: true | ||
