Skip to content

Update average requirement from 0.14 to 0.15 #174

Update average requirement from 0.14 to 0.15

Update average requirement from 0.14 to 0.15 #174

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Nightly
run: rustup default nightly
- name: Check Formatting
run: cargo fmt --all -- --check
feature-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
run: rustup default stable
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Check Feature Matrix
run: cargo hack build --all --all-targets --feature-powerset
test:
name: Test ${{ matrix.rust_version }}/${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust_version: ['1.60.0', 'stable', 'nightly']
os: [ubuntu-20.04, ubuntu-22.04, macOS-11, macOS-12, windows-2019, windows-2022]
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ matrix.rust_version }}
run: rustup default ${{ matrix.rust_version }}
- name: Run Tests
run: cargo test --no-default-features --features=prost -- --test-threads=1
cross-test:
name: Test ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
- armv5te-unknown-linux-gnueabi
- arm-unknown-linux-gnueabi
- armv7-unknown-linux-gnueabihf
steps:
- uses: actions/checkout@v3
- name: Ensure Rust up-to-date
run: rustup default stable
- name: Install Cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Run Tests
run: cross test --target ${{ matrix.target }} --no-default-features --features=prost -- --test-threads=1
cross-test-mips-mipssel:
name: Test ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- mips-unknown-linux-gnu
- mipsel-unknown-linux-gnu
steps:
- uses: actions/checkout@v3
- name: Ensure Rust up-to-date
run: rustup default nightly
- name: Install Cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Run Tests
run: cross +nightly test --target ${{ matrix.target }} --no-default-features --features=prost -- --test-threads=1
env:
RUSTFLAGS: "-C opt-level=1"
docs:
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v3
- name: Install Rust Nightly
run: rustup default nightly
- name: Check Docs
run: cargo doc --all-features --workspace --no-deps
bench:
name: Bench ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
run: rustup default stable
- name: Run Benchmarks
run: cargo bench -- --output-format bencher