Skip to content

Bump pydantic from 1.8.2 to 1.10.13 #251

Bump pydantic from 1.8.2 to 1.10.13

Bump pydantic from 1.8.2 to 1.10.13 #251

Workflow file for this run

name: 'Test'
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: "Test code and check lint"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ['3.8']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip3 install -U pip tox
- name: "tests"
run: |
make test
- name: "lint"
run: |
make lint