Prepare for new versions #232
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
ci: | |
name: Check, test, rustfmt and clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust, clippy and rustfmt | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy, rustfmt | |
- name: Check | |
run: | | |
cargo check --all-features | |
cargo check --all-features \ | |
--manifest-path dolby_vision/Cargo.toml | |
- name: Test | |
run: | | |
cargo test --all-features | |
cargo test --all-features --bins | |
cargo test --all-features --all-targets \ | |
--manifest-path dolby_vision/Cargo.toml | |
- name: Rustfmt | |
run: | | |
cargo fmt --check | |
cargo fmt --check \ | |
--manifest-path dolby_vision/Cargo.toml | |
- name: Clippy | |
run: | | |
cargo clippy --all-features \ | |
--all-targets --tests -- --deny warnings --verbose | |
cargo clippy --all-features \ | |
--manifest-path dolby_vision/Cargo.toml \ | |
--all-targets --tests -- --deny warnings --verbose |