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 7c35b57 commit 8497477Copy full SHA for 8497477
.github/workflows/build.yml
@@ -0,0 +1,29 @@
1
+name: Build CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ container: devkitpro/devkitarm
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ with:
18
+ submodules: true
19
20
+ - name: Install dependencies
21
+ run: apt-get update && apt-get install -y build-essential && apt-get install -y python3-pip && python3 -m pip install --upgrade pip && python3 -m pip install --upgrade Pillow
22
23
+ - name: Build
24
+ run: make
25
26
+ - uses: actions/upload-artifact@v4
27
28
+ name: demo
29
+ path: summer.gba
0 commit comments