Skip to content

added a comment explaining edge construction #16 #38

added a comment explaining edge construction #16

added a comment explaining edge construction #16 #38

Workflow file for this run

name: tests
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
pyver: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Install Conda environment from environment.yml
uses: mamba-org/provision-with-micromamba@main
with:
cache-env: true
extra-specs: |
python=${{ matrix.pyver }}
pytest=6.2.5
hypothesis=6.62.0
- name: Install showerpipe
shell: bash -l {0}
run: pip install .
- name: Run tests
shell: bash -l {0}
run: pytest