Skip to content

Commit bf968e5

Browse files
committed
build: add github workflow
1 parent 0a9f914 commit bf968e5

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build Assembly Projects
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v3
16+
17+
- name: Install NASM
18+
run: sudo apt update && sudo apt install -y nasm
19+
20+
- name: Build all programs
21+
run: make

0 commit comments

Comments
 (0)