Skip to content

Update example to the latest (#71) #110

Update example to the latest (#71)

Update example to the latest (#71) #110

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- release-*
tags:
# YYYYMMDD
- "20[0-9][0-9][0-1][0-9][0-3][0-9]*"
pull_request:
branches:
workflow_dispatch:
env:
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
RUST_LOG: info,libp2p=off
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: styfle/[email protected]
name: Cancel Outdated Builds
with:
all_but_latest: true
access_token: ${{ github.token }}
- uses: actions/checkout@v4
name: Checkout Repository
- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching
- name: Format Check
run: cargo fmt -- --check
- name: Check
run: cargo clippy --workspace --all-features --all-targets -- -D warnings
- name: Audit
run: cargo audit --ignore RUSTSEC-2023-0052 --ignore RUSTSEC-2023-0065 --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2024-0336