Skip to content

Tests

Tests #174

Workflow file for this run

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