Skip to content

fix pydantic type hint check #75

fix pydantic type hint check

fix pydantic type hint check #75

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'README.md'
- 'docs/**'
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run install
run: |
make install
- name: Run linting
run: |
make lint
- name: Run tests
run: |
make test-coverage
- name: Report coverage
run: |
make coveralls