Skip to content

Update requirements.txt #1404

Update requirements.txt

Update requirements.txt #1404

Workflow file for this run

name: CI | Code Quality
on:
push:
branches-ignore:
- "main-ci"
- "release"
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.12, 3.11.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Pylint Source
run: |
find . -type f -name '*.py' | grep -v './build/' | xargs pylint --extension-pkg-whitelist='pydantic'