build(deps): bump tracing-subscriber from 0.3.20 to 0.3.22 (#517) #409
This file contains hidden or 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: Clippy check | |
| on: push | |
| jobs: | |
| clippy_check: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ubuntu:plucky | |
| steps: | |
| - name: Setup Environment | |
| run: | | |
| apt-get update | |
| apt-get upgrade -y | |
| apt install -y git build-essential curl gettext pkg-config libssl-dev libgtk-4-dev \ | |
| libadwaita-1-dev libmpv-dev libgstreamer1.0-dev libgstreamer-plugins-bad1.0-dev \ | |
| libgstreamer-plugins-base1.0-dev libgstreamer-plugins-good1.0-dev gstreamer1.0-libav | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@nightly | |
| - name: Run Clippy | |
| run: | | |
| echo "testing" > secret/key | |
| rustup component add clippy | |
| RUSTFLAGS="-D warnings" cargo clippy --fix --allow-dirty --no-deps --release --all-targets |