Skip to content

Bump STM32H7 HAL to version 0.15 #38

Bump STM32H7 HAL to version 0.15

Bump STM32H7 HAL to version 0.15 #38

Workflow file for this run

name: Continuous integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
check-all:
name: Check all
runs-on: ubuntu-latest
steps:
- name: Fetch sources
uses: actions/checkout@v2
- name: Install ARM Rust toolchain
uses: actions-rs/toolchain@v1
with:
target: thumbv7em-none-eabihf
toolchain: stable
override: true
components: rustfmt, clippy
- name: Check formatting
run: make check-format
- name: Check clippy
run: make clippy