Skip to content

Commit

Permalink
Don't build examples with 2 oldest resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrcek committed Sep 30, 2024
1 parent cb48c27 commit c28cbec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
run: stack build --resolver ${{ matrix.resolver }}

- name: Build examples
run: stack build --flag oidc-client:build-examples --resolver ${{ matrix.resolver }}
# Disabled with the 2 olderst resolvers, because they require too many extra-deps
if: matrix.resolver != 'lts-18' && matrix.resolver != 'lts-19'
run: stack build --flag oidc-client:build-examples --resolver ${{ matrix.resolver }}

- name: Run tests
run: stack test --resolver ${{ matrix.resolver }}

0 comments on commit c28cbec

Please sign in to comment.