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 499eba3 commit 42c9ea8Copy full SHA for 42c9ea8
.github/workflows/linting-and-checks.yaml
@@ -43,19 +43,20 @@ jobs:
43
- name: "Setup: checkout repository"
44
uses: actions/checkout@v4
45
46
+ - name: "Setup: install poetry"
47
+ run: pipx install poetry
48
+
49
- name: "Setup: add python"
50
uses: actions/setup-python@v5
51
with:
52
python-version: "3.12"
53
+ cache: "poetry"
54
- - name: "Setup: add venv"
- run: |
- pip install poetry
- poetry config virtualenvs.in-project true
55
- poetry install
+ - name: "Setup: install dependencies"
56
+ run: poetry install
57
58
- name: "Run: mypy"
- run: mypy src
59
+ run: poetry run mypy src
60
61
typescript-compile:
62
runs-on: ubuntu-latest
0 commit comments