Skip to content

Parallel plotting in surfchi2 + update python requires #7

Parallel plotting in surfchi2 + update python requires

Parallel plotting in surfchi2 + update python requires #7

Workflow file for this run

name: surfvis Workflow
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version}}
- name: Checkout source
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Upgrade pip and setuptools
run: python -m pip install -U pip setuptools
- name: Install surfvis
run: python -m pip install .[testing]
- name: Run tests
run: py.test -s -vvv tests/
deploy:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Deploy Step
run: >
echo "Deploying PyPI"