Skip to content

deps: bump pydantic to v2 & fix bugs. #235

deps: bump pydantic to v2 & fix bugs.

deps: bump pydantic to v2 & fix bugs. #235

name: GitHub Action
on:
push:
pull_request:
branches-ignore:
- 'temp*'
- 'tmp*'
release:
types: [ created ]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.13 # Drop python3.6 support in 1.2.x
virtualenvs-create: true
virtualenvs-in-project: true
# - name: Load cached venv
# id: cached-poetry-dependencies
# uses: actions/cache@v2
# with:
# path: .venv
# key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Test with unittest
run: |
source .venv/bin/activate
python -m unittest