Skip to content

Commit

Permalink
just inline it...
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed Sep 2, 2023
1 parent 11240ec commit c76128b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
cabal: ['3.4', '3.6']
env:
CONFIG: "--enable-tests --enable-doc --builddir=build/no-full-width-positions"
TEST_CONFIG: "--enable-tests --enable-doc --builddir=build/no-full-width-positions --test-options='--color always'"
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand Down Expand Up @@ -45,14 +44,14 @@ jobs:

- name: Test (-full-width-positions)
run: |
cabal test parsley-core $TEST_CONFIG
cabal test parsley $TEST_CONFIG
cabal test parsley-core $CONFIG --test-options="--color always"
cabal test parsley $CONFIG --test-options="--color always"
- name: Test (+full-width-positions)
run: |
rm cabal.project.freeze
cabal test parsley-core --flag full-width-positions $TEST_CONFIG --builddir=build/full-width-positions
cabal test parsley --flag full-width-positions $TEST_CONFIG --builddir=build/full-width-positions
cabal test parsley-core --flag full-width-positions $CONFIG --test-options="--color always" --builddir=build/full-width-positions
cabal test parsley --flag full-width-positions $CONFIG --test-options="--color always" --builddir=build/full-width-positions
- name: Doc
run: cabal haddock parsley $CONFIG

0 comments on commit c76128b

Please sign in to comment.