mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-13 15:53:47 -05:00
* 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>
27 lines
681 B
YAML
27 lines
681 B
YAML
---
|
|
name: Spellcheck
|
|
|
|
on:
|
|
# Run for pushes on any branch
|
|
push:
|
|
branches:
|
|
- '*'
|
|
# Run for any PRs
|
|
pull_request:
|
|
|
|
jobs:
|
|
codespell:
|
|
name: codespell
|
|
strategy:
|
|
fail-fast: false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
skip: "./.git,./.gitignore,./ABOUT-NLS,./gl,./tools/squid.conf,./build-aux/ltmain.sh,THANKS.in"
|
|
ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners,esponse,slac
|
|
check_filenames: true
|
|
check_hidden: true
|