Skip to content

container fixes again #167

container fixes again

container fixes again #167

Workflow file for this run

name: Build Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install
run: |
sudo apt -y update
sudo apt -y install gcc-arm-none-eabi
- name: Clean
run: |
cd test/
make clean
cd ..
- name: Build tests
run: |
cd test/
bash makeAllTests.sh
cd ..