Clear placement reconcile flag via Drop guard #70
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: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| pre-commit: | |
| name: Pre-commit Gate | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| - uses: DeterminateSystems/flakehub-cache-action@main | |
| - name: Cache Cargo | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| ~/.cache/cargo-target/port | |
| key: ${{ runner.os }}-${{ github.job }}-cargo-${{ hashFiles('Cargo.lock', 'flake.lock', 'flake.nix', 'nix/port.nix', 'justfile', '.justfiles/checks.just', '.github/workflows/ci.yml') }}-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ github.job }}-cargo-${{ hashFiles('Cargo.lock', 'flake.lock', 'flake.nix', 'nix/port.nix', 'justfile', '.justfiles/checks.just', '.github/workflows/ci.yml') }}- | |
| ${{ runner.os }}-${{ github.job }}-cargo- | |
| - name: Run quality checks | |
| run: nix develop --command just quality | |
| - name: Run tests | |
| run: nix develop --command just test | |
| - name: Run keel health | |
| run: nix develop --command keel health |