11
11
12
12
strategy :
13
13
matrix :
14
- operating-system : [ubuntu-18.04 , windows-2019 , macOS-10.14 ]
14
+ operating-system : [ubuntu-latest , windows-latest , macOS-latest ]
15
15
16
16
runs-on : ${{ matrix.operating-system }}
17
17
61
61
62
62
- name : Run unit tests on the legacy package
63
63
# Run legacy tests on one platform only
64
- if : matrix.operating-system == 'ubuntu-18.04 '
64
+ if : matrix.operating-system == 'ubuntu-latest '
65
65
run : task test-legacy
66
66
67
67
- name : Install Python
81
81
# Codecov whitelists GitHub, lifting the need
82
82
# for a token.
83
83
if : >
84
- matrix.operating-system == 'ubuntu-18.04 ' &&
84
+ matrix.operating-system == 'ubuntu-latest ' &&
85
85
github.event_name == 'push'
86
86
87
87
with :
95
95
# Codecov whitelists GitHub, lifting the need
96
96
# for a token.
97
97
if : >
98
- matrix.operating-system == 'ubuntu-18.04 ' &&
98
+ matrix.operating-system == 'ubuntu-latest ' &&
99
99
github.event_name == 'push'
100
100
101
101
with :
@@ -109,7 +109,7 @@ jobs:
109
109
# Codecov whitelists GitHub, lifting the need
110
110
# for a token.
111
111
if : >
112
- matrix.operating-system == 'ubuntu-18.04 ' &&
112
+ matrix.operating-system == 'ubuntu-latest ' &&
113
113
github.event_name == 'push'
114
114
115
115
with :
0 commit comments