name: rust on: [push, pull_request] jobs: build: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: FedericoCarboni/setup-ffmpeg@v1 id: setup-ffmpeg - run: rustup update stable - run: rustup component add rustfmt - run: rustup component add clippy - run: cargo test --all-features - run: cargo fmt --all -- --check - run: cargo clippy --all-features --all-targets -- --deny warnings - run: cargo build --all-features