We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48026f commit f05ede5Copy full SHA for f05ede5
.github/workflows/test.yml
@@ -74,13 +74,18 @@ jobs:
74
- ubuntu-latest
75
- macOS-latest
76
- windows-latest
77
- # Mark which GHC versions on which platforms we want to test.
+ 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
83
+ # Don't test windows on 9.2, it has particularly bad long-path issues
84
+ - os: windows-latest
85
+ ghc: "9.2"
86
include:
- # Test all supported versions, but only on ubuntu and windows
- - os: ubuntu-latest
- test: true
- - os: windows-latest
87
88
+ test: false
89
90
steps:
91
- uses: actions/checkout@v3
0 commit comments