Skip to content

fixed #24

fixed #24 #23

Workflow file for this run

name: Python Test
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
jobs:
test_lt39:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: python -m pip install -r requirements.txt
- name: Install Self
run: python setup.py develop
- name: Test with pytest
run: pylint --rcfile=pylintrc --load-plugins pylint_pydantic tests/lessthan39.py
test_ge39:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: python -m pip install -r requirements.txt
- name: Install Self
run: python setup.py develop
- name: Test with pytest
run: pylint --rcfile=pylintrc --load-plugins pylint_pydantic tests/