Skip to content

Bump werkzeug from 2.3.7 to 3.0.3 in /requirements #77

Bump werkzeug from 2.3.7 to 3.0.3 in /requirements

Bump werkzeug from 2.3.7 to 3.0.3 in /requirements #77

Workflow file for this run

name: Build Status
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- uses: actions/[email protected]
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/dev.txt
- name: Install Node dependencies
run: npm install
- run: cp .env.example .env
- name: Run Node lints
run: npm run lint
- name: Run Python lints
run: flask lint --check
- name: Run Python tests
run: flask test