Skip to content

version bumps due to install failing on versions not 3.10.6 #8

version bumps due to install failing on versions not 3.10.6

version bumps due to install failing on versions not 3.10.6 #8

Workflow file for this run

name: Run NTTT tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Test
run: |
python -m unittest discover -s unit_test/ -v