Skip to content

Small Optimization of HC1 VCOV Computation #7

Small Optimization of HC1 VCOV Computation

Small Optimization of HC1 VCOV Computation #7

Workflow file for this run

name: Testing duckreg
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Install test dependencies
run: |
pip install pytest
- name: Run tests
run: |
pytest