Add --censor-between parameter to censor short sets of nonoutliers between outliers
#5759
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: Contribution checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| defaults: | |
| run: | |
| shell: bash | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Keep this pin in sync with the ruff rev in .pre-commit-config.yaml. | |
| # Unpinned, CI silently follows new ruff releases and goes red without a code change. | |
| - run: pipx run --spec ruff==0.14.11 ruff check . | |
| - run: pipx run --spec ruff==0.14.11 ruff format --diff . | |
| codespell: | |
| name: Check for spelling errors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Codespell | |
| uses: codespell-project/actions-codespell@v2 |