Skip to content

Commit

Permalink
Simplify CI, don't run for ghc9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-tielen committed May 5, 2024
1 parent 96aed23 commit 8f8ff29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]
jobs:
generate-matrix:
name: "Generate matrix from cabal"
outputs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -41,10 +41,10 @@ jobs:
key: ${{ runner.os }}-ghc-${{ matrix.ghc }}-cabal-${{ hashFiles('**/plan.json') }}
restore-keys: ${{ runner.os }}-ghc-${{ matrix.ghc }}-
- name: Configure
run: cabal configure --enable-tests
run: make configure
- name: Build
run: cabal build
run: make build
- name: Test
run: |
cabal install hspec-discover
cabal test
make tests
2 changes: 1 addition & 1 deletion souffle-haskell.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ extra-doc-files:
LICENSE
README.md

tested-with: GHC ==9.2.8 || ==9.4.8 || ==9.6.4
tested-with: GHC ==9.4.8 || ==9.6.4

source-repository head
type: git
Expand Down

0 comments on commit 8f8ff29

Please sign in to comment.