Skip to content

bump version to 0.2.0 #1

bump version to 0.2.0

bump version to 0.2.0 #1

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
haskell:
name: stack build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haskell-actions/setup@v2
with:
ghc-version: '9.2.8'
enable-stack: true
- uses: actions/cache@v1
with:
path: ~/.stack
key: ${{ runner.os }}-stack-${{ hashFiles('hsaml2.cabal') }}-${{ hashFiles('stack.yaml') }}
restore-keys: |
${{ runner.os }}-stack-
${{ runner.os }}-
- name: build
run: stack build --system-ghc --flag hsaml2:-crypton
- name: test
run: stack test --system-ghc --flag hsaml2:-crypton