We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37742e commit badf652Copy full SHA for badf652
.github/workflows/test.yml
@@ -11,16 +11,18 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
14
- - uses: chartboost/ruff-action@v1
15
- with:
16
- args: 'check .'
+ - uses: hynek/setup-cached-uv@v1
+ - run: uv venv
+ - run: uv pip install ruff
17
+ - run: source .venv/bin/activate; ruff check .
18
ruff-format:
19
20
21
22
23
- args: 'format --check .'
24
25
+ - run: source .venv/bin/activate; ruff format .
26
test:
27
# DISABLE FOR REWRITE
28
if: false
0 commit comments