Feat/borrower claim #237
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'web/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'web/**' | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| env: | |
| SQLX_OFFLINE: true | |
| SIMPLEX_COMMIT: 1945d11b47fff8838c3e99c210133519a9522324 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust (stable) | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Cache cargo | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Install simplex-cli via simplexup | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| curl -fsSL --retry 5 --retry-all-errors --retry-delay 2 https://smplx.simplicity-lang.org | bash | |
| BASE_DIR="${XDG_CONFIG_HOME:-$HOME}" | |
| SIMPLEX_DIR="${SIMPLEX_DIR:-$BASE_DIR/.simplex}" | |
| SIMPLEX_BIN_DIR="$SIMPLEX_DIR/bin" | |
| "$SIMPLEX_BIN_DIR/simplexup" --commit "$SIMPLEX_COMMIT" | |
| echo "$SIMPLEX_BIN_DIR" >> "$GITHUB_PATH" | |
| "$SIMPLEX_BIN_DIR/simplex" --version | |
| - name: Generate contract artifacts | |
| shell: bash | |
| run: | | |
| cd crates/contracts | |
| simplex build | |
| test -f src/artifacts/mod.rs | |
| - name: Clippy | |
| run: cargo clippy --workspace --all-targets --all-features -- -D warnings |