Skip to content

build: bump @fluentui/react from 8.121.3 to 8.122.9 in /App/frontend #29

build: bump @fluentui/react from 8.121.3 to 8.122.9 in /App/frontend

build: bump @fluentui/react from 8.121.3 to 8.122.9 in /App/frontend #29

Workflow file for this run

name: Pylint and Flake8
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 App/requirements.txt
pip install flake8 # Ensure flake8 is installed explicitly
- name: Run flake8 and pylint
run: |
flake8 --config=.flake8 App/backend # Specify the directory to lint