Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

re-aligned checkmark #3

re-aligned checkmark

re-aligned checkmark #3

Workflow file for this run

name: CI Build
# Define the trigger event(s)
on: [push, pull_request]
# Jobs run in parallel by default, each runs steps in sequence
jobs:
compile-firmware:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v3
- name: Build stm32CubeIDE project
uses: xanderhendriks/[email protected]
with:
project-path: 'DAQ_System'
project-target: 'DAQ_System/Debug'
run-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v3
- name: Install Ninja
run: sudo apt-get install ninja-build
- name: Build and run unit tests
run: |
cd DAQ_System/Tests
cmake -G "Ninja" -S . -B ./build
cd build
ninja
./daq-unit-tests