We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a9f914 commit bf968e5Copy full SHA for bf968e5
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,21 @@
1
+name: Build Assembly Projects
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
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