We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ebac0f commit b5ce623Copy full SHA for b5ce623
.github/workflows/main.yaml
@@ -15,13 +15,24 @@ jobs:
15
uses: actions/setup-python@v5
16
with:
17
python-version: "3.12"
18
+
19
- name: Install Poetry
- run: curl -sSL https://install.python-poetry.org | python3 -
20
+ run: curl -sSL https://install.python-poetry.org | python3 - --version 1.7.12
21
22
- name: Add Poetry to PATH
23
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
24
25
- name: Install dependencies
26
run: poetry install
27
working-directory: backend
28
29
+ - name: Check typing
30
+ run: poetry run mypy .
31
+ working-directory: backend
32
33
+ - name: Run lint
34
+ run: task lint
35
36
- name: Run tests
- run: poetry run pytest
37
+ run: task test
38
0 commit comments