Add GitHub workflow.

master
James T. Martin 2020-11-02 16:00:43 -08:00
parent 3b2dd67fe7
commit ced4dbeb7b
Signed by: james
GPG Key ID: 4B7F3DA9351E577C
1 changed files with 22 additions and 0 deletions

22
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install latest Haskell Stack
uses: actions/setup-haskell@v1.1
with:
enable-stack: true
- name: Build
run: stack build
- name: Test
run: stack test