Skip to content

chore(deps): bump certifi from 2024.6.2 to 2024.7.4 #146

chore(deps): bump certifi from 2024.6.2 to 2024.7.4

chore(deps): bump certifi from 2024.6.2 to 2024.7.4 #146

Workflow file for this run

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