Skip to content

bump primitive upper bound to 0.9 (#40) #371

bump primitive upper bound to 0.9 (#40)

bump primitive upper bound to 0.9 (#40) #371

Workflow file for this run

on: [push, pull_request]
name: osx-ci
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
ghc: ['9.2', '9.4', '9.6']
cabal: ['3.8']
name: Haskell GHC ${{ matrix.ghc }}
env:
CONFIG: "--enable-tests --enable-benchmarks"
steps:
- name: CPU info
run: |
sysctl -n machdep.cpu.brand_string
sysctl -n machdep.cpu.features
sysctl -n machdep.cpu.leaf7_features
- name: remove xcode devtools
run: sudo rm -rf /Library/Developer/CommandLineTools/SDKs
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Setup Haskell
uses: haskell/actions/setup@v2
id: setup-haskell-cabal # <--- give it a name for later cache usage
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: |
cabal update
cabal freeze $CONFIG
- uses: actions/cache@v2
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
- run: |
cabal configure $CONFIG
cabal build $CONFIG
cabal test --test-show-details=direct
- run: |
cabal haddock
cabal check
cabal sdist