Add test for the rolling_ball_options function #142
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: Linting ππβ‘ | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ruff: | |
| name: Ruff β‘π΅ | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π₯ Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Run Ruff checks β‘ | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: check | |
| markdownlint: | |
| name: Markdownlint ππ΅ | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π₯ Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Run markdownlint-cli2-action π | |
| uses: DavidAnson/markdownlint-cli2-action@v22 | |
| with: | |
| globs: | | |
| *.md | |
| !test/*.md |