@@ -26,14 +26,16 @@ jobs:
26
26
uses : pdm-project/setup-pdm@v4
27
27
with :
28
28
python-version : ${{ matrix.python-version }}
29
- - name : Install dependencies
30
- if : matrix.os == 'ubuntu-latest'
29
+ - if : matrix.os == 'ubuntu-latest'
30
+ name : Install dependencies on Linux
31
31
run : |
32
32
pdm install -dG test -L pdm_linux.lock
33
- if : matrix.os == 'windows-latest'
33
+ - if : matrix.os == 'windows-latest'
34
+ name : Install dependencies on Windows
34
35
run : |
35
36
pdm install -dG test -L pdm_windows.lock
36
- if : matrix.os == 'macOS-latest'
37
+ - if : matrix.os == 'macOS-latest'
38
+ name : Install dependencies on macOS
37
39
run : |
38
40
pdm install -dG test -L pdm_macos.lock
39
41
- name : Run Tests
@@ -55,14 +57,16 @@ jobs:
55
57
uses : pdm-project/setup-pdm@v4
56
58
with :
57
59
python-version : ${{ matrix.python-version }}
58
- - name : Install dependencies
59
- if : matrix.os == 'ubuntu-latest'
60
+ - if : matrix.os == 'ubuntu-latest'
61
+ name : Install dependencies on Linux
60
62
run : |
61
63
pdm install -dG test -L pdm_linux.lock
62
- if : matrix.os == 'windows-latest'
64
+ - if : matrix.os == 'windows-latest'
65
+ name : Install dependencies on Windows
63
66
run : |
64
67
pdm install -dG test -L pdm_windows.lock
65
- if : matrix.os == 'macOS-latest'
68
+ - if : matrix.os == 'macOS-latest'
69
+ name : Install dependencies on macOS
66
70
run : |
67
71
pdm install -dG test -L pdm_macos.lock
68
72
# See: https://remarkablemark.org/blog/2023/10/14/setup-codeclimate-with-github-actions/
0 commit comments