Skip to content

build(deps): bump coverage from 7.8.0 to 7.10.4 in /app #278

build(deps): bump coverage from 7.8.0 to 7.10.4 in /app

build(deps): bump coverage from 7.8.0 to 7.10.4 in /app #278

Workflow file for this run

name: Python
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.13'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
set -x
pip install --upgrade pip
pip install wheel setuptools
cd app && pip install .
- name: Test with pytest
run: cd app && make coverage