Skip to content

fix: modified file writing and proccessing #88

fix: modified file writing and proccessing

fix: modified file writing and proccessing #88

Workflow file for this run

name: Compile Firmware
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Create folder
run: mkdir -p external/
- name: Set up environment
run: |
sudo apt-get update && sudo apt-get install -y cmake build-essential gdb
- name: Build and run tests
run: |
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cd build
make
cd ..
./build/googletests