Skip to content

Tests

Tests #120

Workflow file for this run

on:
push:
pull_request:
schedule:
- cron: '36 6 * * *'
name: Tests
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11' ]
steps:
- name: Clone and checkout branch
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build project
run: make
- name: Run tests
run: make test