Improve EOF processing for potential re-reading #95
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: ogg | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-latest] | |
toolchain: [stable, beta, 1.56.1] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
- name: Downgrade dependencies to comply with MSRV | |
if: matrix.toolchain == '1.56.1' | |
run: cargo update -p tokio --precise 1.29.1 | |
- name: Run no-default-features builds | |
if: matrix.toolchain != '1.56.1' | |
run: | | |
cargo test --verbose --no-default-features | |
cargo doc --verbose --no-default-features | |
- name: Run no-default-features builds (forbidding warnings) | |
if: matrix.toolchain == '1.56.1' | |
env: | |
RUSTFLAGS: -D warnings | |
run: | | |
cargo test --verbose --no-default-features | |
cargo doc --verbose --no-default-features | |
- name: Run all-features builds | |
if: matrix.toolchain != '1.56.1' | |
run: | | |
cargo test --verbose --all-features | |
cargo doc --verbose --all-features |