Skip to content

dependabot(deps): bump black from 24.4.0 to 24.4.2 #100

dependabot(deps): bump black from 24.4.0 to 24.4.2

dependabot(deps): bump black from 24.4.0 to 24.4.2 #100

Workflow file for this run

name: Flask
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r api/requirements.txt -r ui/requirements.txt
- name: Linter
run: make lint
- name: Security analysis
run: make security
- name: Unit Tests
run: make test