Skip to content

Feature: IMU service #23

Feature: IMU service

Feature: IMU service #23

Workflow file for this run

on:
push:
branches: [main]
pull_request:
paths:
- "boards/phoenix/**"
- "common/**" # because phoenix has some dependencies on common
workflow_dispatch:
name: Phoenix Build Verification
jobs:
checks:
uses: ./.github/workflows/build.yml
with:
crate-name: phoenix
crate-path: boards/phoenix
default-features: music
build:
name: Build Phoenix (All Features)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Rust Environment (Cached)
uses: ./.github/actions/common/setup-rust-environment/
- name: Build
run: cargo build --release --features music
working-directory: boards/phoenix