Skip to content

Commit c0de440

Browse files
committed
ci: Introduce test-workflow
1 parent 0614600 commit c0de440

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches: [ master ]
10+
paths-ignore:
11+
- README.md
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

Comments
 (0)