Skip to content

Problem: If a user request an already generated request_id and the sy… #201

Problem: If a user request an already generated request_id and the sy…

Problem: If a user request an already generated request_id and the sy… #201

Workflow file for this run

name: Unit tests
on: [push]
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[testing]
- name: Check typing with mypy
run: |
mypy src/ tests/
- name: Test with pytest
run: |
pytest