Skip to content

chore: 移除 p2p 集成测试,release 指定 ubuntu-22.04 #47

chore: 移除 p2p 集成测试,release 指定 ubuntu-22.04

chore: 移除 p2p 集成测试,release 指定 ubuntu-22.04 #47

Workflow file for this run

name: Check
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.91.1"
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check
- run: cargo check --workspace
- run: cargo build --workspace --bins
- run: cargo clippy --workspace --all-targets --all-features
- run: cargo test --workspace