Skip to content

Version 1.0.0

Version 1.0.0 #6

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
tags: ["[0-9]+.[0-9]+.[0-9]+"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
ci:
strategy:
matrix:
rust: [beta, stable, 1.52.0]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: rustfmt
targets: thumbv7em-none-eabihf
- run: cargo fmt -- --check
- run: cargo test
- run: cargo build --target thumbv7em-none-eabihf