Skip to content

build(deps): bump coverage from 7.5.4 to 7.6.1 in /app #213

build(deps): bump coverage from 7.5.4 to 7.6.1 in /app

build(deps): bump coverage from 7.5.4 to 7.6.1 in /app #213

Workflow file for this run

name: Python
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.12'
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: |
pip install --upgrade pip
pip install wheel setuptools
cd app && python setup.py install
- name: Test with pytest
run: cd app && make coverage