Add upper bound for tasty-quickcheck
due to build cycle (#7493)
#4408
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
name: Stackage check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.stack | |
~/.stackage/curator/cache | |
key: ${{ runner.os }}-stackage-nightly-${{ hashFiles('**/build-constraints.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- run: etc/check.sh |