Skip to content

Continuous integration #87

Continuous integration

Continuous integration #87

Workflow file for this run

on:
push: # Run CI for all branches except GitHub merge queue tmp branches
branches-ignore:
- "gh-readonly-queue/**"
pull_request: # Run CI for PRs on any branch
merge_group: # Run CI for the GitHub merge queue
name: Continuous integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- thumbv6m-none-eabi
- thumbv7m-none-eabi
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.target }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --target=${{ matrix.target }} --examples