build(deps): bump rodio from 0.17.1 to 0.17.3 #19
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: Check test cases and lints | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: "Check test cases and lints" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt install libasound2-dev | |
cargo install cargo-audit | |
rustup component add clippy --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: Check build status | |
run: cargo build --verbose --all-features | |
- name: Check test cases | |
run: cargo test --verbose --all-features | |
- name: Check linter | |
run: cargo clippy --verbose --all-features -- -Dwarnings | |
- name: Audit dependencies | |
run: cargo audit |