Skip to content

Networking and P2P layer setup #120

Networking and P2P layer setup

Networking and P2P layer setup #120

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
env:
CARGO_TERM_COLOR: always
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Cache the Cargo registry to speed up dependency fetching.
- name: Cache Cargo registry
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
# Cache the Cargo git index.
- name: Cache Cargo git index
uses: actions/cache@v3
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}
# Optionally, cache the Cargo build output (target directory)
- name: Cache Cargo build output
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }}
# Install nightly + clippy for the build job
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
- name: Build
run: cargo build --verbose
# Uncomment if you want to run tests during CI.
- name: Run tests
run: cargo test --verbose
- name: Run clippy
run: cargo clippy