Skip to content

Commit e578f47

Browse files
committed
CI
1 parent cc74d4c commit e578f47

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/main.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ '*' ]
6+
pull_request:
7+
branches: [ '*' ]
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+
strategy:
26+
fail-fast: false
27+
28+
steps:
29+
- uses: actions/checkout@v4
30+
31+
- name: install packages
32+
run: sudo apt install nasm
33+
34+
- name: build
35+
run: sh ./build.sh
36+

0 commit comments

Comments
 (0)