Skip to content

Commit 8257913

Browse files
wip
1 parent fad15c6 commit 8257913

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
.hpc
5858
restore-keys: ${{ matrix.ghc-version }}-
5959

60-
- if: ${{ env.coverage }}
60+
- if: ${{ env.coverage == true }}
6161
run: |
6262
cat <<EOF >>cabal.project.local
6363
program-options
@@ -72,18 +72,18 @@ jobs:
7272
# one in this PR. This is important in order to get the same
7373
# coverage-counting logic on the PR as on master.
7474
- uses: actions/checkout@v4
75-
if: ${{ env.coverage }}
75+
if: ${{ env.coverage == true }}
7676
with:
7777
ref: ${{ github.head_ref }}
7878
sparse-checkout:
7979
scripts
8080
clean: false
8181

82-
- if: ${{ env.coverage }}
82+
- if: ${{ env.coverage == true }}
8383
run: ./scripts/generate-coverage-comment.sh constrained.tix | tee coverage-report-${{matrix.ref}}.md
8484

8585
- name: Upload coverage report
86-
if: ${{ env.coverage }}
86+
if: ${{ env.coverage == true }}
8787
uses: actions/upload-artifact@v4
8888
with:
8989
name: constrained-${{matrix.ref}}-coverage

0 commit comments

Comments
 (0)