Skip to content

Update tokio and related dependencies (#326) #1505

Update tokio and related dependencies (#326)

Update tokio and related dependencies (#326) #1505

Workflow file for this run

name: cleanliness
on:
push:
tags: # only on releases, not RC, since we've tested already
- "[0-9]+.[0-9]+.[0-9]+"
branches: ["**"] # glob pattern to allow slash /
pull_request:
types:
- opened
- synchronize
branches:
- "release**"
- "main**"
env:
DIEM_FORGE_NODE_BIN_PATH: ${{github.workspace}}/diem-node
LIBRA_CI: 1
MODE_0L: "TESTNET"
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup env
uses: ./.github/actions/build_env
- uses: Swatinem/rust-cache@v2.7.3
with:
shared-key: "libra-framework"
cache-all-crates: true
- name: format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
# TODO: clippy can share cache if build for tests is done prior
# - name: build for cache
# run: cargo build --tests --workspace
- name: clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --tests -- -D warnings