Skip to content

Commit

Permalink
Don't test in CI because Vault is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
cdepillabout committed Aug 24, 2024
1 parent d18802d commit 6259bd9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ jobs:
cabal update
cabal build all --enable-tests --enable-benchmarks --write-ghc-environment-files=always
- name: Test
run: |
cabal test all --enable-tests --enable-benchmarks --write-ghc-environment-files=always
# TODO: Tests require the `vault` executable to be available.
# - name: Test
# run: |
# cabal test all --enable-tests --enable-benchmarks --write-ghc-environment-files=always

stack:
name: stack ${{ matrix.resolver }} / ${{ matrix.os }}
Expand Down Expand Up @@ -77,6 +78,7 @@ jobs:
run: |
stack build --test --bench --no-run-tests --no-run-benchmarks
- name: Test
run: |
stack test --bench --no-run-benchmarks
# TODO: Tests require the `vault` executable to be available.
# - name: Test
# run: |
# stack test --bench --no-run-benchmarks

0 comments on commit 6259bd9

Please sign in to comment.