Skip to content

Setting up the project #158

Setting up the project

Setting up the project #158

Workflow file for this run

name: Run pytest
on:
push:
branches:
- master
pull_request:
branches:
- '*'
workflow_run:
workflows: ["Update datasets and predictions"]
types:
- completed
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
#----------------------------------------------
# install dependencies
#----------------------------------------------
- name: Install dependencies
run: pip install -r requirements.txt
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests
run: pytest tests/