Skip to content

Bump tokio from 1.36.0 to 1.37.0 #303

Bump tokio from 1.36.0 to 1.37.0

Bump tokio from 1.36.0 to 1.37.0 #303

Workflow file for this run

name: tests
on:
push:
branches:
- develop
- release
pull_request:
types:
- opened
- synchronize
- reopened
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable
- name: cargo test
run: cargo test
rustfmt:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable
- name: cargo clippy
run: cargo clippy -- -D warnings