Skip to content

Commit f05ede5

Browse files
committed
Try to just exclude windows+9.2
1 parent b48026f commit f05ede5

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,18 @@ jobs:
7474
- ubuntu-latest
7575
- macOS-latest
7676
- windows-latest
77-
# Mark which GHC versions on which platforms we want to test.
77+
test: true
78+
exclude:
79+
# Don't test (but do build) on macos, it's sufficiently similar to other OSs
80+
# that it mostly just burns CI time
81+
- os: macos
82+
test: true
83+
# Don't test windows on 9.2, it has particularly bad long-path issues
84+
- os: windows-latest
85+
ghc: "9.2"
7886
include:
79-
# Test all supported versions, but only on ubuntu and windows
80-
- os: ubuntu-latest
81-
test: true
82-
- os: windows-latest
83-
test: true
87+
- os: macos
88+
test: false
8489

8590
steps:
8691
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)