Proposed fix for issue #47 #63
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: Tests | |
on: | |
pull_request | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: update base dependencies | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: install package | |
run: python -m pip install biopython && python -m pip install . -v | |
- name: create test directory | |
run: mkdir testdir | |
- name: run tests | |
working-directory: testdir | |
run: python -m unittest discover -v tmtools |