We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de7fadd + a66b4a9 commit 4f5bcfdCopy full SHA for 4f5bcfd
.github/workflows/main.yml
@@ -0,0 +1,41 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ '*' ]
6
+ pull_request:
7
8
+jobs:
9
+ build-macos:
10
+ runs-on: macos-latest
11
+ strategy:
12
+ fail-fast: false
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: nasm
18
+ run: brew install nasm
19
20
+ - name: setup
21
+ run: ./setup.sh
22
23
+ - name: build
24
+ run: ./build.sh
25
26
+ build-ubuntu:
27
+ runs-on: ubuntu-latest
28
29
30
31
32
33
34
+ - name: install nasm
35
+ run: sudo apt install nasm
36
37
38
39
40
41
0 commit comments