Skip to content

Merge pull request #5 from I-Bouros/i1-model-recoding #133

Merge pull request #5 from I-Bouros/i1-model-recoding

Merge pull request #5 from I-Bouros/i1-model-recoding #133

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run Unit Tests on multiple OS
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Test with unittest
run: |
python run-tests.py --unit