Skip to content

(backend) Implement reportlab to generate PDFs #9

(backend) Implement reportlab to generate PDFs

(backend) Implement reportlab to generate PDFs #9

Workflow file for this run

name: Test Backend
on:
push:
paths:
- '**.py'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install project dependencies
run: |
pip install --no-cache-dir poetry==1.6.1
poetry config virtualenvs.create false
cd backend
poetry install
- name: Run tests
run: |
cd backend
python -m unittest discover