Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 20aac3c

Browse files
authored
Add GitHub Actions (#65)
Replaces Jenkins CI.
1 parent 7a408a0 commit 20aac3c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-20.04
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
with:
17+
submodules: true
18+
- name: Install dependencies
19+
run: sudo apt install -y fsharp
20+
- name: Build
21+
run: make -w
22+
- name: Test
23+
run: make -w -k check

0 commit comments

Comments
 (0)