diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bd3056ae..ab408f4d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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