Skip to content

dependencies: (deps): bump the actions group across 1 directory with 2 updates #10

dependencies: (deps): bump the actions group across 1 directory with 2 updates

dependencies: (deps): bump the actions group across 1 directory with 2 updates #10

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
unit-test-pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Check-out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Run tests with coverage
run: |
pytest --cov=datacure --cov-report=term --cov-branch