Replace travis with github action

This commit is contained in:
Sam Tay 2022-11-28 16:59:51 -08:00
parent e271067771
commit 25560e51db
No known key found for this signature in database
3 changed files with 13 additions and 24 deletions

12
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,12 @@
on: [push]
name: build
jobs:
runhaskell:
name: Hello World
runs-on: ubuntu-latest # or macOS-latest, or windows-latest
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- run: stack build