mirror of
https://github.com/joeycastillo/second-movement.git
synced 2026-03-01 03:55:49 +00:00
27 lines
539 B
YAML
27 lines
539 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- gh-pages
|
|
|
|
jobs:
|
|
build:
|
|
container:
|
|
image: ghcr.io/armmbed/mbed-os-env:latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- name: Compile movement firmware
|
|
run: make
|
|
working-directory: '.'
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: firmware.uf2
|
|
path: build/firmware.uf2
|