Skip to content

chore(deps): bump tokio-rustls from 0.23.4 to 0.26.0 #993

chore(deps): bump tokio-rustls from 0.23.4 to 0.26.0

chore(deps): bump tokio-rustls from 0.23.4 to 0.26.0 #993

Workflow file for this run

name: clippy
on:
merge_group:
pull_request:
push:
branches:
- main
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Cache .cargo and target
uses: actions/cache@v2
with:
path: |
~/.cargo
./target
key: ${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-cargo-clippy
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings