Skip to content

fix: Fix code in README USAGE section #164

fix: Fix code in README USAGE section

fix: Fix code in README USAGE section #164

Workflow file for this run

on: [push, pull_request]
name: Run tests
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --all-features
- run: cargo test --verbose --all-features