Install apply-refact on suitable GHC versions #1469
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: ci | |
on: | |
push: | |
branches-ignore: | |
- 'ghc-next*' | |
- 'ghc-9.12*' | |
pull_request: | |
branches-ignore: | |
- 'ghc-next*' | |
schedule: | |
- cron: '0 3 * * 6' # 3am Saturday | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
ghc: ['9.12', '9.10', '9.8'] | |
include: | |
- os: windows-latest | |
ghc: '9.12' | |
- os: macOS-latest | |
ghc: '9.12' | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/setup@v2 | |
id: setup-haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
- run: cabal v2-freeze --enable-tests | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.setup-haskell.outputs.cabal-store }} | |
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}- | |
- run: cabal install apply-refact --install-method=copy | |
# Not available on GHC 9.10, see https://github.com/mpickering/apply-refact/pull/149 | |
if: matrix.ghc == '9.12' || matrix.ghc == '9.8' | |
- uses: ndmitchell/neil@master | |
with: | |
hlint-arguments: src |