Skip to content

fix init, mix model folder, improve readme, fix setup.py #6

fix init, mix model folder, improve readme, fix setup.py

fix init, mix model folder, improve readme, fix setup.py #6

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10']
exclude:
- os: macos-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install nose2
- name: Run nose tests
run: nose2