Skip to content

Commit c68bcfc

Browse files
committed
Add minimal CI
1 parent c52947e commit c68bcfc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on: [push]
2+
name: build
3+
jobs:
4+
runhaskell:
5+
name: Hello World
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: haskell/actions/setup@v2
10+
with:
11+
enable-stack: true
12+
- run: stack build

0 commit comments

Comments
 (0)