Skip to content

Commit

Permalink
Bump freckle/stack-action from 4 to 5 (#15)
Browse files Browse the repository at this point in the history
* Bump freckle/stack-action from 4 to 5

Bumps [freckle/stack-action](https://github.com/freckle/stack-action) from 4 to 5.
- [Commits](freckle/stack-action@v4...v5)

---
updated-dependencies:
- dependency-name: freckle/stack-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

* Update CI

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Chris Martin <[email protected]>
Co-authored-by: patrick brisbin <[email protected]>
  • Loading branch information
3 people authored Jan 6, 2025
1 parent 043b11e commit 69cf3ac
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,37 @@ on:
branches: main

jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: generate
uses: freckle/stack-action/generate-matrix@v4
outputs:
stack-yamls: ${{ steps.generate.outputs.stack-yamls }}

test:
needs: generate
runs-on: ubuntu-latest

strategy:
matrix:
stack-yaml:
- stack-nightly.yaml # ghc-9.6
- stack.yaml # ghc-9.4
- stack-lts-20.26.yaml # ghc-9.2
- stack-lts-19.33.yaml # ghc-9.0
- stack-lts-18.28.yaml # ghc-8.10
- stack-lts-16.31.yaml # ghc-8.8
stack-yaml: ${{ fromJSON(needs.generate.outputs.stack-yamls) }}
fail-fast: false

steps:
- uses: actions/checkout@v4
- uses: freckle/stack-action@v4
- uses: freckle/stack-action@v5
with:
stack-yaml: ${{ matrix.stack-yaml }}
stack-arguments: --flag aws-sns-verify:development
stack-build-arguments: --flag aws-sns-verify:development
env:
STACK_YAML: ${{ matrix.stack-yaml }}

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haskell/actions/hlint-setup@v2
- uses: haskell/actions/hlint-run@v2
- uses: haskell-actions/hlint-setup@v2
- uses: haskell-actions/hlint-run@v2
with:
fail-on: warning

0 comments on commit 69cf3ac

Please sign in to comment.