Skip to content

CI

CI #80

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: '0 12 * * 0' # run once a week on Sunday
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements-tests.txt
- name: "Run Tests"
run: pytest