Skip to content

Commit caf812b

Browse files
Add GitHub Actions CI workflow
1 parent 4db14b1 commit caf812b

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: oven-sh/setup-bun@v2
17+
18+
- uses: purescript-contrib/setup-purescript@main
19+
with:
20+
purescript: "latest"
21+
spago: "unstable"
22+
23+
- name: Install dependencies
24+
run: spago install
25+
26+
- name: Build
27+
run: spago build
28+
29+
- name: Test
30+
run: spago test

0 commit comments

Comments
 (0)