We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faa3154 commit 16a4b29Copy full SHA for 16a4b29
.github/workflows/ci.yml
@@ -65,13 +65,13 @@ jobs:
65
run: pip install --upgrade tox setuptools pip
66
- name: Install build dependencies (Linux) # Yasm in pypa/manylinux images.
67
run: sudo apt install yasm
68
- if: ${{ runner.os == "linux" }}
+ if: runner.os == 'Linux'
69
- name: Install build dependencies (Macos)
70
run: brew install yasm automake autoconf
71
- if: ${{ runner.os == "macOS" }}
+ if: runner.os == 'macOS'
72
- name: Install build dependencies (Windows)
73
run: choco install yasm
74
- if: ${{ runner.os == "Windows" }}
+ if: runner.os == 'Windows'
75
- name: Run tests
76
run: tox -e py3
77
- name: Upload coverage report
0 commit comments