Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,14 @@ jobs:
- name: Misspell
run: git ls-files --empty-directory | grep -v docs/ | xargs ./misspell -error
pre-commit:
name: Run pre-commit # https://pre-commit.com/
runs-on: ubuntu-latest
name: "Run pre-commit on ${{ matrix.os }}" # https://pre-commit.com/
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
include:
- {os: ubuntu-latest}
- {os: windows-latest}
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v3
Expand Down