Skip to content

Merge pull request #118 from argyle-engineering/dependabot/pip/typing… #222

Merge pull request #118 from argyle-engineering/dependabot/pip/typing…

Merge pull request #118 from argyle-engineering/dependabot/pip/typing… #222

Workflow file for this run

name: QA checks
on:
push
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
pydantic_versions: ["< 2", ">= 2"]
task:
- check_types
- check_fmt
- test
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: "3.10"
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: "1.3.2"
- name: Install dependencies
run: |
poetry install
poetry run pip install "pydantic ${{ matrix['pydantic_versions'] }}"
- name: QA
run: poetry run task ${{ matrix['task'] }}