Skip to content

chore(deps-dev)(deps-dev): bump vite from 6.3.5 to 7.1.7 in /frontend #125

chore(deps-dev)(deps-dev): bump vite from 6.3.5 to 7.1.7 in /frontend

chore(deps-dev)(deps-dev): bump vite from 6.3.5 to 7.1.7 in /frontend #125

Workflow file for this run

name: Pylint
permissions:
contents: read
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- 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 --upgrade pip
cd backend/src
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with Pylint
run: |
pylint --recursive=y --rcfile=backend/pyproject.toml backend/src