run not everything on every os

This commit is contained in:
jb-alvarado 2022-10-14 12:23:58 +02:00
parent 13aac537bb
commit bd4c247f9b

View File

@ -8,15 +8,17 @@ jobs:
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: |
if [ "$RUNNER_OS" == "Linux" ]; then
cargo test --all-features
fi
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features --all-targets -- --deny warnings
- run: cargo build --all-features
- name: Run on Linux
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: FedericoCarboni/setup-ffmpeg@v1
id: setup-ffmpeg
run: cargo fmt --all -- --check
run: cargo clippy --all-features --all-targets -- --deny warnings
run: cargo build --all-features
- name: Run on macOS/Windows
run: cargo build --all-features