We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
haskell.yml
1 parent b86b731 commit bc04171Copy full SHA for bc04171
.github/workflows/haskell.yml
@@ -12,6 +12,11 @@ permissions:
12
jobs:
13
generate-matrix:
14
name: "Generate matrix from cabal"
15
+ if: ( ( github.event_name == 'push' )
16
+ || ( github.event_name == 'pull_request'
17
+ && github.event.pull_request.draft == false
18
+ )
19
20
outputs:
21
matrix: ${{ steps.set-matrix.outputs.matrix }}
22
runs-on: ubuntu-latest
@@ -25,7 +30,11 @@ jobs:
25
30
version: 0.1.7.1
26
31
27
32
test:
28
-
33
34
35
36
37
29
38
name: ${{ matrix.ghc }} on ${{ matrix.os }}
39
needs: generate-matrix
40
runs-on: ${{ matrix.os }}
0 commit comments