Revert "support ruff mode Argument"

This reverts commit 17a2e52c32.
This commit is contained in:
Yoshihisa Mochihara
2024-03-19 19:36:55 +01:00
parent 17a2e52c32
commit f8abd91ecb
3 changed files with 4 additions and 27 deletions
+1 -3
View File
@@ -32,15 +32,13 @@ can be included as a step in any other workflow file.
The Ruff action can be customized via optional configuration parameters passed to Ruff (using `with:`):
- version: Must be a Ruff release available on PyPI. By default, latest release of Ruff. You can pin a version, or use any valid version specifier.
- mode: 'check' or 'format', default, 'check'
- args: default, ''
- args: default, `check`
- src: default, '.'
```yaml
- uses: chartboost/ruff-action@v1
with:
src: "./src"
mode: "check"
version: 0.2.2
args: --select B
```