Skip to content

chore: correctly specify dependencies in workspace #170

chore: correctly specify dependencies in workspace

chore: correctly specify dependencies in workspace #170

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