ivo/.github/workflows/ci.yml

23 lines
340 B
YAML
Raw Normal View History

2020-11-02 16:00:43 -08:00
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Haskell toolchain
uses: haskell/actions/setup@v1
2020-11-02 16:00:43 -08:00
with:
enable-stack: true
- name: Build
run: stack build
- name: Test
run: stack test