File tree Expand file tree Collapse file tree 3 files changed +33
-16
lines changed Expand file tree Collapse file tree 3 files changed +33
-16
lines changed Original file line number Diff line number Diff line change 1+ on : [push, pull_request]
2+
3+ name : Continuous integration
4+
5+ jobs :
6+ ci :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ mcu :
11+ - stm32f100
12+ - stm32f101
13+ - stm32f103
14+ rust :
15+ - stable
16+ include :
17+ - rust : nightly
18+ mcu : stm32f103
19+ experimental : true
20+
21+ steps :
22+ - uses : actions/checkout@v2
23+ - uses : actions-rs/toolchain@v1
24+ with :
25+ profile : minimal
26+ toolchain : ${{ matrix.rust }}
27+ target : thumbv7m-none-eabi
28+ override : true
29+ - uses : actions-rs/cargo@v1
30+ with :
31+ command : build
32+ args : --features=${{ matrix.mcu }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44
55[ HAL ] : https://crates.io/crates/embedded-hal
66
7+ [ ![ Continuous integration] ( https://github.com/stm32-rs/stm32f1xx-hal/workflows/Continuous%20integration/badge.svg )] ( https://github.com/stm32-rs/stm32f1xx-hal )
78[ ![ crates.io] ( https://img.shields.io/crates/v/stm32f1xx-hal.svg )] ( https://crates.io/crates/stm32f1xx-hal )
89[ ![ Released API docs] ( https://docs.rs/stm32f1xx-hal/badge.svg )] ( https://docs.rs/stm32f1xx-hal )
910
You can’t perform that action at this time.
0 commit comments