Skip to content

ClangTidy issue in lib/system/Route.hpp #2928

ClangTidy issue in lib/system/Route.hpp

ClangTidy issue in lib/system/Route.hpp #2928

Workflow file for this run

name: spellcheck
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
continue-on-error: true
- name: install misspell
run: |
curl -L -o ./install-misspell.sh https://git.io/misspell
sh ./install-misspell.sh
- name: run misspell
run: |
./bin/misspell -error ./**/*.md
./bin/misspell -error ./**/*.txt
./bin/misspell -error ./examples/**/*
find . -type f -wholename './lib/*.*' | grep -v json\\.hpp | xargs ./bin/misspell -error
./bin/misspell -error ./tests/**/*