Replace expect
with a safer alternative that returns None
instead
#215
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: Test | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions/checkout@master | |
- run: rustup component add rustfmt | |
- run: cargo fmt --all -- --check | |
test: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
rust: [stable] | |
experimental: [false] | |
include: | |
- rust: nightly | |
os: ubuntu-latest | |
experimental: true | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: actions/checkout@master | |
- name: Run tests | |
run: | | |
cargo test --test lib | |
cargo test --test lib --features "debug-embed" | |
cargo test --test lib --features "compression" --release | |
cargo test --test mime_guess --features "mime-guess" | |
cargo test --test mime_guess --features "mime-guess" --release | |
cargo test --test interpolated_path --features "interpolate-folder-path" | |
cargo test --test interpolated_path --features "interpolate-folder-path" --release | |
cargo build --example basic | |
cargo build --example rocket --features rocket | |
cargo build --example actix --features actix | |
cargo build --example axum --features axum-ex | |
cargo build --example warp --features warp-ex | |
cargo test --test lib --release | |
cargo build --example basic --release | |
cargo build --example rocket --features rocket --release | |
cargo build --example actix --features actix --release | |
cargo build --example axum --features axum-ex --release | |
cargo build --example warp --features warp-ex --release |