Improve Stackage nightly workflow to automatically create an issue if it fails #212
Workflow file for this run
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: Haskell | |
on: | |
push: | |
branches: [master] | |
tags: | |
- "v*" | |
paths: | |
- ".github/workflows/**" | |
- "src/**" | |
- "package.yaml" | |
- "stack*.yaml" | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
resolver: | |
- stack-lts-20 | |
- stack-lts-19 | |
- stack-lts-18 | |
- stack-lts-17.14 | |
- stack-lts-16.1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mbg/actions/stack/[email protected] | |
with: | |
resolver: ${{ matrix.resolver }} | |
upload-docs: true |