Skip to content

Merge pull request #7 from zimran-tech/feature/pydantic-settings-version #32

Merge pull request #7 from zimran-tech/feature/pydantic-settings-version

Merge pull request #7 from zimran-tech/feature/pydantic-settings-version #32

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements/dev.txt
- run: flake8 .
- run: mypy .
- run: pytest