⬆️ upgrade vgmstream and rust 2024 edition #137
Workflow file for this run
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: Check | |
on: | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install FFmpeg | |
run: | | |
sudo apt-get update | |
sudo apt-get install libavformat-dev libavcodec-dev libavutil-dev libswresample-dev | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@nightly | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-binstall | |
uses: cargo-bins/cargo-binstall@main | |
- name: Install cargo check tools | |
run: cargo binstall --no-confirm --force cargo-deny cargo-udeps | |
- name: Check | |
run: | | |
cargo deny check | |
cargo udeps |