Skip to content

Commit

Permalink
Don't run fs tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
anacrolix committed Oct 10, 2023
1 parent 2d8ef8d commit 70ae680
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:

test:
timeout-minutes: 30
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -15,7 +15,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/go-common
- run: go test -race -count 2 ./...
- run: go test -race -count 2 $(go list ./... | grep -v /fs)
- run: go test -race -count 2 ./fs/...
if: ${{ ! contains(matrix.os, 'windows') }}

test-benchmarks:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 70ae680

Please sign in to comment.