Skip to content

Commit 16a4b29

Browse files
committed
Simpler syntax
1 parent faa3154 commit 16a4b29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ jobs:
6565
run: pip install --upgrade tox setuptools pip
6666
- name: Install build dependencies (Linux) # Yasm in pypa/manylinux images.
6767
run: sudo apt install yasm
68-
if: ${{ runner.os == "linux" }}
68+
if: runner.os == 'Linux'
6969
- name: Install build dependencies (Macos)
7070
run: brew install yasm automake autoconf
71-
if: ${{ runner.os == "macOS" }}
71+
if: runner.os == 'macOS'
7272
- name: Install build dependencies (Windows)
7373
run: choco install yasm
74-
if: ${{ runner.os == "Windows" }}
74+
if: runner.os == 'Windows'
7575
- name: Run tests
7676
run: tox -e py3
7777
- name: Upload coverage report

0 commit comments

Comments
 (0)