Counting validators signatures (histogram) #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Rust Format and Clippy | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-fmt: | |
name: Run fmt and clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: 1.82.0 | |
components: rustfmt,clippy | |
cache: true | |
- uses: extractions/setup-just@v2 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- name: Check fmt | |
run: just fmt-check | |
- name: Run Clippy | |
run: just clippy |