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 97f04d1 commit 837138bCopy full SHA for 837138b
.github/workflows/ci.yml
@@ -4,7 +4,7 @@ on: [push]
4
5
jobs:
6
run_unit_tests:
7
- runs-on: ubuntu-18.04
+ runs-on: [ubuntu-18.04, ubuntu-20.04, macos-10.15]
8
strategy:
9
max-parallel: 8
10
matrix:
@@ -17,7 +17,7 @@ jobs:
17
python-version: ${{ matrix.python-version }}
18
- name: Install
19
run: |
20
- sudo apt-get install jq
+ [[ $(uname) == Linux ]] && sudo apt-get install --no-install-recommends python3-openssl python3-lxml
21
pip install coverage wheel
22
make install
23
- name: Test
0 commit comments