Skip to content

feat(core): allow for max_size and max_time parameters #6

feat(core): allow for max_size and max_time parameters

feat(core): allow for max_size and max_time parameters #6

Workflow file for this run

name: Rust-CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run cargo test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Cache Rust dependencies
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo test
run: cargo test --workspace --all-features