Skip to content

Bump coverage from 7.9.2 to 7.10.0 in the minor-and-patch group (#98) #82

Bump coverage from 7.9.2 to 7.10.0 in the minor-and-patch group (#98)

Bump coverage from 7.9.2 to 7.10.0 in the minor-and-patch group (#98) #82

Workflow file for this run

name: Test
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- "master"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Run tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.13"
cache: "pip"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Run tests
run: |
make development
source virtualenv_run/bin/activate
make test