Skip to content

build(deps): bump idna from 3.4 to 3.7 #40

build(deps): bump idna from 3.4 to 3.7

build(deps): bump idna from 3.4 to 3.7 #40

Workflow file for this run

name: Tests
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Run unittests
run: |
poetry run pytest --verbose