File tree 1 file changed +5
-14
lines changed 1 file changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -33,30 +33,21 @@ jobs:
33
33
key : ${{ runner.os }}-${{ steps.get_python_version.outputs.python_version }}-dependencies-${{ hashFiles('**/pdm.lock') }}
34
34
restore-keys : |
35
35
${{ runner.os }}-${{ steps.get_python_version.outputs.python_version }}-dependencies
36
- - name : Install PDM
37
- run : pip install pdm
36
+ - name : Install Poetry
37
+ run : pip install poetry
38
38
39
39
- name : Install Dependencies
40
- run : pdm install
41
-
42
- - name : Check formatting
43
- run : pdm run ruff format . --check
44
-
45
- - name : Run mypy
46
- run : pdm mypy --show-error-codes
47
-
48
- - name : Lint
49
- run : pdm run ruff check .
40
+ run : poetry install
50
41
51
42
- name : Run pytest without coverage
52
43
if : matrix.os != 'ubuntu-latest'
53
- run : pdm test
44
+ run : task unit
54
45
env :
55
46
TASKIPY : true
56
47
57
48
- name : Run pytest with coverage
58
49
if : matrix.os == 'ubuntu-latest'
59
- run : pdm test_with_coverage
50
+ run : task code_coverage
60
51
env :
61
52
TASKIPY : true
62
53
You can’t perform that action at this time.
0 commit comments