Skip to content

chore(deps-dev): bump vite from 6.3.6 to 6.4.1 in /src/App/frontend #2076

chore(deps-dev): bump vite from 6.3.6 to 6.4.1 in /src/App/frontend

chore(deps-dev): bump vite from 6.3.6 to 6.4.1 in /src/App/frontend #2076

Workflow file for this run

name: PyLint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- 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 --upgrade pip
pip install -r src/App/requirements.txt
- name: Run flake8 and pylint
run: |
flake8 --config=src/App/.flake8 src/App