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.
1 parent cc74d4c commit e578f47Copy full SHA for e578f47
.github/workflows/main.yml
@@ -0,0 +1,36 @@
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: install packages
18
+ run: brew install nasm x86_64-elf-gcc
19
20
+ - name: build
21
+ run: sh ./build.sh
22
23
+ build-ubuntu:
24
+ runs-on: ubuntu-latest
25
26
27
28
29
30
31
32
+ run: sudo apt install nasm
33
34
35
36
0 commit comments