Skip to content

chore(deps): bump werkzeug from 3.0.2 to 3.0.3 #149

chore(deps): bump werkzeug from 3.0.2 to 3.0.3

chore(deps): bump werkzeug from 3.0.2 to 3.0.3 #149

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.12" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Test
run: poetry run pytest -svv --cov=bento_drop_box_service --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}