From d651525fe687432ed01db6a0a000cd2e546e9f41 Mon Sep 17 00:00:00 2001 From: crsz20 Date: Thu, 13 Jun 2024 21:51:36 -0500 Subject: [PATCH] Added YAML file for CI build --- .github/workflows/ci_build.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci_build.yaml diff --git a/.github/workflows/ci_build.yaml b/.github/workflows/ci_build.yaml new file mode 100644 index 0000000..27ddb22 --- /dev/null +++ b/.github/workflows/ci_build.yaml @@ -0,0 +1,21 @@ +name: CI Build + +# Define the trigger event(s) +on: push + +# Jobs run in parallel by default, each runs steps in sequence +jobs: + + compile-firmware: + runs-on: ubuntu-latest + steps: + + - name: Check out this repo and submodules + uses: actions/checkout@v3 + + - name: Build stm32CubeIDE project + uses: xanderhendriks/action-build-stm32cubeide@v10.0 + with: + project-path: 'Firmware/Shifter_System' + project-target: 'Shifter_System/Debug' + \ No newline at end of file