We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6654f46 commit 24a29cfCopy full SHA for 24a29cf
2 files changed
.github/workflows/lint.yml
@@ -11,8 +11,7 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: astral-sh/ruff-action@v3
+ - name: Lint and format using Ruff
15
+ uses: astral-sh/ruff-action@v3
16
run: ruff check --fix
17
run: ruff format --diff
- with:
18
- python-version: '3.12'
.github/workflows/type_checking.yml
@@ -20,7 +20,7 @@ jobs:
20
python-version: '3.12'
21
22
- name: Install Dependencies
23
- run: pip install mypy
+ run: pip install mypy certifi
24
25
- name: Run mypy
26
run: mypy .
0 commit comments