We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1279ed5 commit f41bd07Copy full SHA for f41bd07
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,44 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [master, main]
6
+ pull_request:
7
8
9
+jobs:
10
+ build-linux:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Build
16
+ run: make
17
18
+ - name: Test
19
+ run: make test
20
21
+ build-windows:
22
+ runs-on: windows-latest
23
+ defaults:
24
+ run:
25
+ shell: bash
26
27
28
29
30
31
32
33
34
35
+ build-macos:
36
+ runs-on: macos-latest
37
38
39
40
41
42
43
44
0 commit comments