Update Rust crate tokio to v1.41.1 #67
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: Review | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- '.github/workflows/review.yml' | |
env: | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
rust: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
components: clippy | |
override: true | |
- name: cache dependencies | |
uses: Swatinem/[email protected] | |
- name: clippy check | |
uses: actions-rs/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features | |
- name: compile for unit test | |
uses: actions-rs/[email protected] | |
with: | |
command: test | |
args: --no-run --locked | |
- name: unit test | |
uses: actions-rs/[email protected] | |
with: | |
command: test |