Skip to content

Commit 838da58

Browse files
committed
add github workflow
1 parent b37c88d commit 838da58

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: C/C++ CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
name: ubuntu-latest
8+
runs-on: ubuntu-latest
9+
container: devkitpro/devkitarm:latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Build
15+
run: |
16+
make -j

0 commit comments

Comments
 (0)