Skip to content

new scenario and images #531

new scenario and images

new scenario and images #531

Workflow file for this run

name: PyLint
on:
push:
paths:
- 'src/api/**/*.py'
- 'infra/scripts/**/*.py'
- '.flake8'
- '.github/workflows/pylint.yml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r src/api/requirements.txt --no-cache-dir
- name: Run flake8 and pylint
run: |
flake8 --config=.flake8 src/api infra/scripts