Trigger GitHub release/publish explicitly, scripts cleanup #685
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: [ main, master ] | |
env: | |
RUSTFLAGS: "-C debuginfo=0 -D warnings" | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.toolchain == 'nightly' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macos-latest, windows-latest, ubuntu-latest ] | |
toolchain: [ stable, beta, nightly ] | |
include: | |
- os: macos-latest | |
MACOS: true | |
- os: windows-latest | |
- os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install linux build requirements | |
run: sudo apt install --yes --no-install-recommends libasound2-dev pkg-config | |
if: contains(matrix.os, 'ubuntu') | |
- name: install ${{ matrix.toolchain }} toolchain | |
run: rustup toolchain install ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- run: cargo clippy -- -D warnings | |
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest' | |
- run: | | |
rustup component add rustfmt | |
cargo fmt --all -- --check | |
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest' | |
- run: cargo test --all-targets | |
- run: cargo test --lib --bins --tests --benches --features=experimental | |
- run: cargo test --all-targets --features=symphonia-all | |
# `cargo test` does not check benchmarks and `cargo test --all-targets` excludes | |
# documentation tests. Therefore, we need an additional docs test command here. | |
- run: cargo test --doc | |
# Check minimal build. `tests/seek.rs` fails if there are no decoders at all, | |
# adding one to make the tests check pass. | |
- run: cargo check --tests --lib --no-default-features --features mp3 |