fix(cli): reject unparseable numeric flags in benchmark and chat #176
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: Pull Request Automated Checks | |
| # Thin caller for the shared org workflow. Everything lives in | |
| # Nano-Collective/.github — change it there and every repo picks it up. | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: [main] | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| jobs: | |
| pr-checks: | |
| uses: Nano-Collective/.github/.github/workflows/pr-checks.yml@main | |
| with: | |
| # TEMPORARY. The org standard is 80. nanotune is at 71.46%, so the floor | |
| # is pinned just under current coverage and fail-on-drop (on by default) | |
| # ratchets it — coverage cannot regress, and the gap closes deliberately. | |
| # Delete this input once coverage clears 80. Tracked in #123. | |
| # nanotune stays out of the org quality ruleset until then. | |
| coverage-threshold: 71 |