-
-
Notifications
You must be signed in to change notification settings - Fork 11
Switch to Cabal-syntax; widen compatibility range #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
caa98f5
e1b444f
ef6b474
753d966
fdb55f3
9b23e9f
b2df9fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,26 +9,30 @@ on: | |
|
|
||
| jobs: | ||
| build: | ||
| name: ghc ${{ matrix.ghc }} | ||
| name: ghc ${{ matrix.ghc }}, cabal ${{ matrix.cabal }} | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| cabal: ["3.8"] | ||
| cabal: | ||
| - "3.8" | ||
| - "3.10" | ||
| - "3.12" | ||
| - "3.14" | ||
| ghc: | ||
| - "8.8.4" | ||
| - "8.10.7" | ||
| - "9.0.2" | ||
| - "9.2.4" | ||
| #- "8.8.4" | ||
| #- "8.10.7" | ||
| #- "9.0.2" | ||
| #- "9.2.4" | ||
| - "9.4.8" | ||
| - "9.6.3" | ||
| - "9.8.1" | ||
| - "9.10.1" | ||
| - "9.12.1" | ||
| #- "9.12.1" | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/main' | ||
| # if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/main' | ||
|
Comment on lines
-31
to
+35
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. to be reverted before merging |
||
|
|
||
| - uses: haskell-actions/setup@v2.7 | ||
| name: Setup Haskell | ||
|
|
@@ -45,7 +49,10 @@ jobs: | |
| - name: Build | ||
| run: | | ||
| cabal v2-update | ||
| cabal v2-build --enable-tests --enable-benchmarks | ||
| cabal v2-configure \ | ||
| --constraint 'Cabal-syntax installed' \ | ||
| --enable-tests --enable-benchmarks | ||
|
Comment on lines
+52
to
+54
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
the added |
||
| cabal v2-build | ||
|
|
||
| - name: Test | ||
| run: | | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.