Skip to content

Commit

Permalink
Remove unnecessary Werrors on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tbidne committed Feb 29, 2024
1 parent d234fc6 commit 3eb1c0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ jobs:
run: cabal configure --enable-tests --ghc-options -Werror

- name: Compile
run: cabal build lib:shrun --ghc-options -Werror
run: cabal build lib:shrun

- name: Unit Tests
run: cabal test unit --test-options '--hedgehog-tests 100000' --ghc-options -Werror
run: cabal test unit --test-options '--hedgehog-tests 100000'

- name: Integration Tests
run: cabal test integration --ghc-options -Werror
run: cabal test integration

- name: Functional Tests
run: cabal test functional --ghc-options -Werror
run: cabal test functional

- name: Benchmarks
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down

0 comments on commit 3eb1c0d

Please sign in to comment.