Added the Fulu fork slot for Mainnet #867
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: ["**"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly-2025-06-26 | |
| components: clippy, rustfmt | |
| - name: Install protoc | |
| run: sudo provisioning/protoc.sh | |
| - name: Setup just | |
| uses: extractions/setup-just@v3 | |
| with: | |
| just-version: 1.40.0 | |
| - name: Check compilation | |
| run: cargo check | |
| - name: Check formatting | |
| run: just fmt-check | |
| - name: Check clippy | |
| run: just clippy | |
| - name: Run tests | |
| run: just test |