This repository was archived by the owner on Sep 8, 2026. It is now read-only.
feat(validator-debt): add overrides option to validator debt payment #930
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: [main] | |
| push: | |
| branches: [main] | |
| tags: ["*"] | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup | Cancel previous runs | |
| uses: styfle/cancel-workflow-action@0.12.1 | |
| - name: Setup | Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check disk space before cleanup | |
| run: df -h | |
| - name: Free disk space | |
| run: | | |
| sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL | |
| sudo docker image prune --all --force | |
| sudo docker builder prune -a --force | |
| - name: Check disk space after cleanup | |
| run: df -h | |
| - name: Setup | Apt packages | |
| run: sudo apt-get update | |
| - name: Setup | Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: 1.91.0 | |
| components: clippy, rustfmt, llvm-tools-preview | |
| - name: Setup | Rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Setup | Install cargo-nextest | |
| uses: taiki-e/install-action@nextest | |
| - name: Setup | Install cargo-llvm-cov | |
| uses: taiki-e/install-action@cargo-llvm-cov | |
| - name: Setup | Just | |
| uses: taiki-e/install-action@just | |
| - name: Test | CI Pipeline | |
| run: just ci |