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 0614600 commit c0de440Copy full SHA for c0de440
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,27 @@
1
+name: Test LibXenon
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ paths-ignore:
7
+ - README.md
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ test_libxenon:
15
+ runs-on: ubuntu-latest
16
+ image: free60/toolchain:latest
17
+ steps:
18
+ - name: Check Out Repo
19
+ uses: actions/checkout@v6
20
21
+ - name: Compile and install libxenon
22
+ working-directory: toolchain/
23
+ run: ./build-xenon-toolchain libxenon
24
25
+ - name: Build cube sample
26
+ working-directory: devkitxenon/examples/xenon/graphics/cube
27
+ run: make
0 commit comments