This commit is contained in:
Philipp Schuster 2022-05-02 21:41:13 +02:00
parent 30dcdb395a
commit b0442bffa8
2 changed files with 55 additions and 40 deletions

View File

@ -9,3 +9,6 @@ insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.yml]
indent_size = 2

View File

@ -20,6 +20,13 @@ jobs:
- 1.51.0 # MSVR
steps:
- uses: actions/checkout@v2
# Important preparation step: override the latest default Rust version in GitHub CI
# with the current value of the iteration in the "strategy.matrix.rust"-array.
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: ${{ matrix.rust }}
override: true
- name: Build
run: cargo build --all-targets --verbose --features all
# use some arbitrary no_std target
@ -36,10 +43,15 @@ jobs:
matrix:
rust:
- stable
- nightly
- 1.51.0 # MSVR
steps:
- uses: actions/checkout@v2
# Important preparation step: override the latest default Rust version in GitHub CI
# with the current value of the iteration in the "strategy.matrix.rust"-array.
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: ${{ matrix.rust }}
override: true
- name: Rustfmt
run: cargo fmt -- --check
- name: Clippy