some more dependency cleanup
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
2022-08-16 10:11:49 +02:00
parent 933230126e
commit 388a8ba616
5 changed files with 70 additions and 32 deletions

View File

@ -5,12 +5,25 @@ name: ci
jobs:
check:
name: Check
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: check
args: --release
cross-check:
name: Check Cross
runs-on: ubuntu-latest
strategy:
matrix:
target:
- armv7-unknown-linux-gnueabihf
- x86_64-unknown-linux-gnu
- thumbv7em-none-eabihf
steps:
- uses: actions/checkout@v2
@ -23,8 +36,8 @@ jobs:
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target=${{ matrix.target }}
command: check
args: --release --target=${{ matrix.target }} --no-default-features
fmt:
name: Rustfmt