Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Bump tokio from 1.33.0 to 1.34.0 #679

Bump tokio from 1.33.0 to 1.34.0

Bump tokio from 1.33.0 to 1.34.0 #679

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
fmt:
name: rustfmt check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: default
- run: cargo fmt --all -- --check
lint:
name: clippy lint
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
stability:
- ""
- "--release"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{matrix.toolchain}}
profile: default
default: true
- name: cargo clippy
run: "cargo clippy --all ${{matrix.stability}}"