306 allow per helix group geometry #215
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
name: Run Unit Tests | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup conda | |
uses: s-weigand/setup-conda@v1 | |
with: | |
activate-conda: true | |
- name: Install openpyxl,tabulate with conda | |
run: conda install openpyxl=3.0.10 tabulate=0.8.10 | |
- name: Install docutils with conda | |
run: conda install docutils=0.16 | |
- name: Test with unittest | |
run: python -m unittest -v tests/scadnano_tests.py |