Skip to content

feat(v3.4): Add relations from GIFT v3.2 publications #352

feat(v3.4): Add relations from GIFT v3.2 publications

feat(v3.4): Add relations from GIFT v3.2 publications #352

Workflow file for this run

name: Python Tests
on:
push:
branches: [main]
paths: ['gift_core/**', 'tests/**']
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '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
run: pip install -e ".[dev]"
- name: Test
run: pytest tests/ -v --cov=gift_core