Skip to content

Delegate sending, improve testing infrastructure #324

Delegate sending, improve testing infrastructure

Delegate sending, improve testing infrastructure #324

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install capnproto
- run: cargo fmt --check
# run clippy for each feature flag configuration
# TODO: make this better
- run: cargo clippy --features metrics
- run: cargo clippy --no-default-features --features runtime-async-std
- run: cargo test
- run: cargo test --no-default-features --features runtime-async-std