Skip to content

Commit

Permalink
Quote all commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Jun 21, 2024
1 parent 8de6d66 commit 7aaf13e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ jobs:
./bin/${{ matrix.devShell }} -c "which ghc && ghc --version"
./bin/${{ matrix.devShell }} -c "which cabal && cabal --version"
- name: Update package index
run: ./bin/${{ matrix.devShell }} -c cabal update
run: ./bin/${{ matrix.devShell }} -c "cabal update"
- name: Enable tests
run: ./bin/${{ matrix.devShell }} -c cabal configure --enable-tests
run: ./bin/${{ matrix.devShell }} -c "cabal configure --enable-tests"
- name: Install project dependencies
run: ./bin/${{ matrix.devShell }} -c cabal build --only-dependencies
run: ./bin/${{ matrix.devShell }} -c "cabal build --only-dependencies"
- name: Compile project
run: ./bin/${{ matrix.devShell }} -c cabal build
run: ./bin/${{ matrix.devShell }} -c "cabal build"
- name: Run tests
run: ./bin/${{ matrix.devShell }} -c cabal test
run: ./bin/${{ matrix.devShell }} -c "cabal test"
- name: Check documentation
run: ./bin/${{ matrix.devShell }} -c ./script/haddock

Expand Down

0 comments on commit 7aaf13e

Please sign in to comment.