Skip to content

Commit

Permalink
ci config macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ferencberes committed Jul 4, 2021
1 parent cf993e5 commit 8e7d346
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-latest]
os: [ubuntu-18.04, ubuntu-latest, macos-latest]
python-version: ['3.7', '3.8']
steps:
- uses: actions/checkout@v2
Expand All @@ -29,7 +29,12 @@ jobs:
#pip install .[test]
pip install -U pip
python setup.py install
bash ./scripts/download_data.sh
- name: Download data (macOS)
run: sh ./scripts/download_data.sh
if: matrix.os == 'macos-latest'
- name: Download data (macOS)
run: bash ./scripts/download_data.sh
if: matrix.os == 'ubuntu-latest' or matrix.os == 'ubuntu-18.04'
#- name: Test coverage.
#run: |
# python setup.py test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ We think that our simulator can be of interest mainly for two types of people: L

- UNIX or macOS environment
- For macOS users: you need to have wget (brew install wget)
- This package was developed in Python 3.5 (conda environment) but it works with Python 3.6 and 3.7 as well.
- This package was developed in Python 3.5 (conda environment) but it is recommended to use recent Python versions (3.7, 3.8).

# Installation

Expand Down

0 comments on commit 8e7d346

Please sign in to comment.