Move rkyv
RPC support to use CRC32 checksums rather than checkbytes and use stack allocated scratch.
#186
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: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
rust: [stable] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install cargo-hack | |
run: cargo install cargo-hack | |
- uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install cargo-hack | |
run: cargo install cargo-hack | |
- uses: Swatinem/rust-cache@v1 | |
- name: Check features | |
run: cargo hack check --all --ignore-private --each-feature --no-dev-deps | |
- name: Check all targets | |
run: cargo check --all --all-targets --all-features | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
rust: [stable] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: taiki-e/install-action@nextest | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run main tests | |
run: cargo nextest run --features test-utils --workspace --exclude simulation-tests --retries 3 | |
- name: Run doc tests | |
run: cargo test --doc --features test-utils --workspace --exclude simulation-tests | |
- name: Run simulation tests | |
run: cargo nextest run -p simulation-tests --retries 3 |