Skip to content

Add holesky metadata #241

Add holesky metadata

Add holesky metadata #241

Workflow file for this run

name: Lint On PR
on:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: "true"
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-05-14
override: true
components: rustfmt, clippy
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: "3.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Anvil
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-cc5637a979050c39b3d06bc4cc6134f0591ee8d0
- name: Build
run: cargo build
- name: Format
run: cargo fmt
- name: Lint
run: CARGO_HTTP_MULTIPLEXING=false cargo clippy