Skip to content

chore: fix d1da5b0

chore: fix d1da5b0 #26

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test_all_features:
name: Run tests - All features enabled
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --all-features
- run: timeout 1m cargo test --verbose --all-features
test_no_default_features:
name: Run tests - No features enabled
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --no-default-features --all-targets
- run: timeout 1m cargo test --verbose --no-default-features --all-targets