Skip to content

Commit

Permalink
initial attempt at resolver workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zachjs committed May 5, 2024
1 parent bc1329a commit 3449e19
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/resolver.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Resolver
on:
push:
branches:
- '*'
pull_request:
schedule:
cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
resolver:
- nightly
- lts-22
- lts-21
- lts-20
- lts-19
- lts-18
- lts-17
- lts-16
- lts-15
- lts-14
- lts-13
- lts-12
- lts-11
steps:
- uses: actions/checkout@v4
- run: stack build --resolver ${{ matrix.resolver }}

0 comments on commit 3449e19

Please sign in to comment.