Skip to content

build: test entire workspace #20

build: test entire workspace

build: test entire workspace #20

Workflow file for this run

name: Rust
on: [ "push" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose --workspace
- name: Run tests
run: cargo test --verbose --workspace