derive PartialEq
for HookResult
#370
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |