Skip to content

Merge pull request #45 from DigitalProductInnovationAndDevelopment/fe… #34

Merge pull request #45 from DigitalProductInnovationAndDevelopment/fe…

Merge pull request #45 from DigitalProductInnovationAndDevelopment/fe… #34

Workflow file for this run

name: Python Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
make test