Skip to content

Commit b5ce623

Browse files
committed
add
1 parent 6ebac0f commit b5ce623

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/main.yaml

+13-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,24 @@ jobs:
1515
uses: actions/setup-python@v5
1616
with:
1717
python-version: "3.12"
18+
1819
- name: Install Poetry
19-
run: curl -sSL https://install.python-poetry.org | python3 -
20+
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.7.12
21+
2022
- name: Add Poetry to PATH
2123
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
24+
2225
- name: Install dependencies
2326
run: poetry install
2427
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+
2536
- name: Run tests
26-
run: poetry run pytest
37+
run: task test
2738
working-directory: backend

0 commit comments

Comments
 (0)