Fix build #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.8, 3.9] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Installation | |
run: | |
| | |
python -m pip install --upgrade pip | |
pip install cython | |
pip install numpy | |
python3 setup.py install | |
pip install -e .[dev,test] | |
- name: Test | |
run: pytest | |
name: nucleus | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review, review_requested] | |