Skip to content

Use pre-made Actions for Haskell workflows (#54) #198

Use pre-made Actions for Haskell workflows (#54)

Use pre-made Actions for Haskell workflows (#54) #198

Workflow file for this run

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@v3
- uses: mbg/actions/stack/build@v0.1
with:
resolver: ${{ matrix.resolver }}
upload-docs: true