Skip to content

unittests

unittests #70

Workflow file for this run

name: unittests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 6 * * 1' # 6am Monday
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.12', '3.11', '3.10', '3.9']
steps:
-
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
-
uses: actions/checkout@v3
-
name: Install and test
run: |
python -m pip install .
python -m unittest