fix: run cargo fmt on contracts.rs #20
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: Primary Problem Regression | |
| on: | |
| push: | |
| paths: | |
| - "scripts/test-primary-problems.sh" | |
| - "docs/public/primary-problem-coverage.md" | |
| - "docs/public/initial-problem-coverage.md" | |
| - "src/**" | |
| - "crates/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/primary-problem-regression.yml" | |
| pull_request: | |
| paths: | |
| - "scripts/test-primary-problems.sh" | |
| - "docs/public/primary-problem-coverage.md" | |
| - "docs/public/initial-problem-coverage.md" | |
| - "src/**" | |
| - "crates/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/primary-problem-regression.yml" | |
| jobs: | |
| validate-primary-problems: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Clone agentic-contracts (sibling dependency) | |
| run: git clone --depth 1 https://github.com/agentralabs/agentic-contracts.git ../agentic-contracts | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Run primary-problem regression | |
| run: ./scripts/test-primary-problems.sh |