From 3449e198d19fe20024ef150dc93d096d8bb1c06d Mon Sep 17 00:00:00 2001 From: Zachary Snow Date: Sun, 5 May 2024 14:38:25 -0400 Subject: [PATCH] initial attempt at resolver workflow --- .github/workflows/resolver.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/resolver.yaml diff --git a/.github/workflows/resolver.yaml b/.github/workflows/resolver.yaml new file mode 100644 index 0000000..7ddae24 --- /dev/null +++ b/.github/workflows/resolver.yaml @@ -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 }}