Skip to content

Commit

Permalink
be more declarative
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Nov 22, 2022
1 parent 13efb93 commit 6ef4d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ jobs:
cabal build cardano-node cardano-cli cardano-node-chairman cardano-submit-api
- name: Run tests (all)
if: github.event.inputs.tests == "all"
if: ${{ github.event.inputs.tests }} == 'all'
env:
TMPDIR: ${{ runner.temp }}
TMP: ${{ runner.temp }}
KEEP_WORKSPACE: 1
run: cabal test all

- name: Run tests
if: github.event.inputs.tests != "all"
if: ${{ github.event.inputs.tests }} != 'all'
env:
TMPDIR: ${{ runner.temp }}
TMP: ${{ runner.temp }}
Expand Down

0 comments on commit 6ef4d03

Please sign in to comment.