Bugfix gpu selection in localcluster #642
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
name: Build | |
on: [push] | |
jobs: | |
check_installation: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install SCIP | |
run: | | |
pip install . | |
- name: Install dev dependencies | |
run: | | |
pip install .[dev] | |
- name: Install package | |
run: | | |
pip install .[czi] | |
- name: Run style enforcement | |
run: flake8 | |
- name: Test with pytest (and run coverage) | |
run: pytest --cov=scip --cov-report xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
env_vars: OS,PYTHON | |
fail_ci_if_error: false | |
files: ./coverage.xml | |
name: codecov-umbrella | |
verbose: true |