Skip to content

fix(typing): Fix typing mistakes #39

fix(typing): Fix typing mistakes

fix(typing): Fix typing mistakes #39

Workflow file for this run

name: Python application test with GitHub Actions
on:
push:
branches: [ trunk ]
pull_request:
branches: [ trunk ]
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Setup the Python Environment ${{ matrix.python-version }}
uses: Qwerty-133/python-setup@v1
with:
python-version: ${{ matrix.python-version }}
skip-pre-commit: true
- name: Install dependencies
run: |
poetry install --all-extras --with dev
- name: Run tests
run: |
poetry run pytest .