Stitch in new wait command #79
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests & Build | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: cargo test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: sudo apt-get update && sudo apt-get install -y libudev-dev | |
- run: cargo test | |
working-directory: bestool | |
audit: | |
name: cargo audits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy,rustfmt | |
- run: sudo apt-get update && sudo apt-get install -y libudev-dev | |
- run: cargo install cargo-audit | |
working-directory: bestool | |
- run: cargo clippy -- -D warnings --no-deps | |
working-directory: bestool | |
# Ignoring mach being unmaintained for now as limited options + its only for MacOS | |
- run: cargo audit -D unsound -D yanked -D unmaintained --ignore "RUSTSEC-2020-0168" | |
working-directory: bestool | |
vet: | |
name: cargo vet | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy,rustfmt | |
- run: sudo apt-get update && sudo apt-get install -y libudev-dev | |
- run: cargo install --locked cargo-vet --version "0.9.0" | |
working-directory: bestool | |
- run: cargo vet --locked | |
working-directory: bestool | |
build: | |
name: cargo build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: sudo apt-get update && sudo apt-get install -y libudev-dev | |
- run: cargo build | |
working-directory: bestool |