Replace travis with github action
This commit is contained in:
parent
e271067771
commit
25560e51db
3 changed files with 13 additions and 24 deletions
12
.github/workflows/ci.yml
vendored
Normal file
12
.github/workflows/ci.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue