Skip to content

Modified logo

Modified logo #47

Workflow file for this run

name: dem
# Triggers testing
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set-up python
uses: actions/setup-python@v4
with:
python-version: 3.8.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest