diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..6166199 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: C/C++ CI + +on: [push, pull_request] + +jobs: + build: + name: ubuntu-latest + runs-on: ubuntu-latest + container: devkitpro/devkitarm:latest + + steps: + - uses: actions/checkout@v3.5.2 + + - name: Build + run: | + make \ No newline at end of file