Update MacOS_CI.yml (#507)

* Update MacOS_CI.yml

* Update MacOS_CI.yml

* Update MacOS_CI.yml

* Update MacOS_CI.yml

* Update MacOS_CI.yml
This commit is contained in:
Atsushi Sakai
2021-05-08 13:27:33 +09:00
committed by GitHub
parent 0705b1cb5b
commit 3ff6b7d1ec

View File

@@ -8,7 +8,7 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: macos-latest
strategy:
matrix:
python-version: [ '3.9' ]
@@ -17,6 +17,9 @@ jobs:
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow
- name: Update bash
run: brew install bash
- name: Setup python
uses: actions/setup-python@v2
with:
@@ -25,6 +28,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy # cvxpy install workaround
pip install -r requirements.txt
- name: install coverage
run: pip install coverage