Skip to content

chore(deps): bump feedparser from 6.0.11 to 6.0.12 #285

chore(deps): bump feedparser from 6.0.11 to 6.0.12

chore(deps): bump feedparser from 6.0.11 to 6.0.12 #285

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "api/**"
- "tests/**"
- "**.py"
- "**.toml"
- "requirements*.txt"
- ".github/workflows/python-lint.yml"
jobs:
pyright:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- 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 -r requirements.txt -r requirements-dev.txt -r requirements-action.txt
- name: Set up pyright
run: echo "PYRIGHT_VERSION=$(python -c 'import pyright; print(pyright.__pyright_version__)')" >> $GITHUB_ENV
- name: Run pyright
uses: jakebailey/[email protected]
with:
version: ${{ env.PYRIGHT_VERSION }}
python-version: ${{ matrix.python-version }}
python-platform: Linux
warnings: true