From 89dd3b6d1774b7a7eaa39689351dc17ab0b3e9f3 Mon Sep 17 00:00:00 2001 From: AleixMT Date: Tue, 14 Jan 2025 03:36:49 +0100 Subject: [PATCH] ADDED: workflow --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml 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