v1.7.2 #187
Workflow file for this run
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] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- if: matrix.os == 'ubuntu-20.04' | |
uses: actions/cache@v3 | |
name: Cache ~/.stack | |
with: | |
path: ~/.stack | |
key: ${{ runner.os }}-stack-${{ hashFiles('**/stack.yaml.lock') }}-${{ hashFiles('**/package.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-stack-${{ hashFiles('**/stack.yaml.lock') }}- | |
${{ runner.os }}-stack- | |
- uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: "9.4.6" | |
enable-stack: true | |
stack-version: "latest" | |
- name: Build | |
run: stack build | |
- name: Run tests | |
run: stack test | |
- name: Run with --version | |
run: stack run -- --version | |
- name: Build statically linked | |
run: stack build --flag git-brunch:static | |
cabal: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
name: Cache cabal | |
with: | |
path: | | |
~/.cabal/packages | |
~/.cabal/store | |
dist-newstyle | |
key: ${{ runner.os }}-cabal-${{ hashFiles('**/*.cabal', '**/cabal.project', '**/cabal.project.freeze') }} | |
restore-keys: ${{ runner.os }}-cabal- | |
- uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: "9.4.6" | |
enable-stack: false | |
cabal-version: "latest" | |
- run: cabal update | |
- name: Build | |
run: cabal build | |
- name: Run tests | |
run: cabal test |