diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f3de0b2..bfd8299 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,11 +6,16 @@ jobs: ci: strategy: matrix: - os: [ubuntu-latest, macos-latest] - + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: + - name: Enable long paths (Windows) + if: runner.os == 'Windows' + run: git config --system core.longpaths true + shell: bash + - name: Checkout repository uses: actions/checkout@v6