Skip to content

Commit 837138b

Browse files
committed
Add macos CI runner
1 parent 97f04d1 commit 837138b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
jobs:
66
run_unit_tests:
7-
runs-on: ubuntu-18.04
7+
runs-on: [ubuntu-18.04, ubuntu-20.04, macos-10.15]
88
strategy:
99
max-parallel: 8
1010
matrix:
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Install
1919
run: |
20-
sudo apt-get install jq
20+
[[ $(uname) == Linux ]] && sudo apt-get install --no-install-recommends python3-openssl python3-lxml
2121
pip install coverage wheel
2222
make install
2323
- name: Test

0 commit comments

Comments
 (0)