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 207624a commit d03a53cCopy full SHA for d03a53c
.github/workflows/main.yml
@@ -12,11 +12,11 @@ jobs:
12
Lint:
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@v1
16
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@4
17
with:
18
- python-version: '3.8'
19
- - run: pip3 install pyright==1.1.402 flake8==7.3.0 --user
20
- - run: echo "$HOME/.local/bin" >> $GITHUB_PATH
21
- - run: pyright .
22
- - run: flake8 .
+ python-version: '3.12'
+ - name: Install uv
+ uses: astral-sh/setup-uv@v2
+ - run: uvx pyright .
+ - run: uvx ruff check .
0 commit comments