Bump version to 0.12.1 #252
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: Main | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- ".gitignore" | |
- ".github/dependabot.yml" | |
pull_request: | |
paths-ignore: | |
- ".gitignore" | |
- ".github/dependabot.yml" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Cache crates | |
uses: Swatinem/rust-cache@v2 | |
- name: Install Taplo | |
run: cargo install taplo-cli | |
- name: Format | |
run: | | |
cargo fmt --check | |
taplo fmt --check | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Install alsa and udev | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
- name: Instal stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache crates | |
uses: Swatinem/rust-cache@v2 | |
- name: Clippy | |
run: cargo clippy --no-deps --all-features --tests --examples -- -D warnings | |
- name: Rustdoc | |
run: cargo rustdoc -- -D warnings | |
feature-combinations: | |
name: Feature combinations | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Instal stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache crates | |
uses: Swatinem/rust-cache@v2 | |
- name: Install Cargo Hack | |
run: cargo install cargo-hack | |
- name: Check feature combinations | |
run: cargo hack check --feature-powerset | |
env: | |
RUSTFLAGS: -Aunused -Dwarnings | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Install alsa and udev | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends libasound2-dev libudev-dev | |
- name: Instal stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache crates | |
uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test |