Skip to content

Build

Build #276

Workflow file for this run

name: Build
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
on:
push:
pull_request:
schedule:
# Run every Tuesday at 8 AM UTC
- cron: "0 8 * * TUE"
workflow_dispatch:
repository_dispatch:
permissions:
contents: read
jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install arm-none-eabi-gcc
run: sudo apt-get update && sudo apt-get install gcc-arm-none-eabi
- name: Build firmware with make
run: make -j8