diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-09-03 09:46:59 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-09-03 09:46:59 -0700 |
commit | 0985e38977535c1ea7bd734a7cb78b17fdf7a53b (patch) | |
tree | 7bca7588eb6a4c2a0bcf24ecf1fbd14fa530722d /.github/workflows | |
parent | 60910d5278117020f2dc27c5904d5c64c1306481 (diff) | |
download | pandoc-0985e38977535c1ea7bd734a7cb78b17fdf7a53b.tar.gz |
CI/macOS: Fix stack invocations.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20db498da..6e21236bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -171,8 +171,8 @@ jobs: - name: Install dependencies run: | - ./stack update - ./stack test --dependencies-only --fast + stack update + stack test --dependencies-only --fast - name: Build and test run: | - ./stack test --fast --test-arguments=--hide-successes + stack test --fast --test-arguments=--hide-successes |