Fixes #317 - Add Autostaple #246
Workflow file for this run
This file contains hidden or 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 | |
| defaults: | |
| run: | |
| shell: bash -el {0} # Use conda shell | |
| strategy: | |
| matrix: | |
| python-version: [ "3.10", "3.11", "3.12", "3.13" ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup conda and python | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| auto-activate: true | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install openpyxl,tabulate,docutils with conda | |
| # shell: bash -el {0} | |
| run: conda install openpyxl=3.1 tabulate=0.9 docutils=0.18 | |
| # - name: Install docutils with conda | |
| # run: conda install docutils=0.18 | |
| - name: Test with unittest | |
| # shell: bash -el {0} | |
| run: python -m unittest -v tests/scadnano_tests.py |