Skip to content

Commit 4f37028

Browse files
committed
add ci
1 parent c9c8690 commit 4f37028

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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/devkitppc:latest
10+
11+
steps:
12+
- uses: actions/checkout@v3
13+
14+
- name: Build
15+
run: |
16+
make -j2
17+

0 commit comments

Comments
 (0)