feat: finish the beagle CLI — wire 12 missing subcommands, fix stal…
#68
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: tests | |
| # CI runs the full tiered suite (active + demoted). The CI=true env var | |
| # triggers bin/beagle-test to include the demoted tier. Active failures | |
| # block the build; demoted failures are advisory (logged in the run | |
| # output and surface-debt.md tracks accumulated debt). See | |
| # lab/journal/synthesis/design-principle.md "Test-cadence decomposition". | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Racket | |
| uses: Bogdanp/setup-racket@v1.14 | |
| with: | |
| architecture: x64 | |
| distribution: full | |
| variant: CS | |
| version: '9.1' | |
| - name: Link beagle packages | |
| run: | | |
| raco pkg install --auto --link \ | |
| beagle-lib/ beagle-test/ beagle/ | |
| - name: Run tiered test suite | |
| env: | |
| CI: 'true' | |
| run: bin/beagle-test | |
| - name: Show accumulated surface debt | |
| if: always() | |
| run: | | |
| if [ -f lab/surface-debt.md ]; then | |
| head -20 lab/surface-debt.md | |
| fi |