File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,22 +19,22 @@ jobs:
19
19
pipx install pyflakes
20
20
shellcheck --version
21
21
pyflakes --version
22
- if : ${{ matrix .os == 'macos-latest ' }}
22
+ if : ${{ runner .os == 'macOS ' }}
23
23
- name : Install dependencies on Linux
24
24
run : |
25
25
set -x
26
26
sudo apt-get install -y shellcheck
27
27
pip install pyflakes
28
28
shellcheck --version
29
29
pyflakes --version
30
- if : ${{ matrix .os == 'ubuntu-latest ' }}
30
+ if : ${{ runner .os == 'Linux ' }}
31
31
- name : Install dependencies on Windows
32
32
run : |
33
33
# `choco install shellcheck` is too slow on GitHub Actions. It takes more than 3 minutes to install one package
34
34
# choco install shellcheck
35
35
pip install pyflakes
36
36
pyflakes --version
37
- if : ${{ matrix .os == 'windows-latest ' }}
37
+ if : ${{ runner .os == 'Windows ' }}
38
38
- uses : actions/checkout@v4
39
39
- uses : actions/setup-go@v5
40
40
with :
You can’t perform that action at this time.
0 commit comments