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 f48b3fe commit 0a52d98Copy full SHA for 0a52d98
.github/workflows/dist.yml
@@ -17,3 +17,18 @@ jobs:
17
secrets:
18
META_REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
19
PYPI_API_TOKEN: ${{ secrets.PYPI_PASSWORD }}
20
+
21
+ check-mypy:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v3
25
+ - uses: actions/setup-python@v4
26
+ with:
27
+ python-version: "3.12"
28
+ - name: Install requirements
29
+ run: |
30
+ pip --disable-pip-version-check install mypy setuptools wheel setuptools_scm
31
+ pip --disable-pip-version-check install --no-build-isolation -e .
32
+ - name: Run mypy
33
34
+ mypy commands2
0 commit comments