Fixing clean file fn, and added multy os gh actions #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test spelling files | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ./.github/workflows/Install-dependencies | |
with: | |
which-dependencies: codespell | |
- name: Run codespell | |
working-directory: ./ | |
shell: bash | |
run: codespell -q 3 -I ./ignore_files/.codespellignore . |