Skip to content

Script regression testing #1475

Script regression testing

Script regression testing #1475

Workflow file for this run

name: Script regression testing
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install -r scripts/requirements.txt
- name: Test with pytest
run: |
PYTHONPATH=. pytest