Skip to content

Release v0.6.1 – consolidate diagnostics into pipeline #25

Release v0.6.1 – consolidate diagnostics into pipeline

Release v0.6.1 – consolidate diagnostics into pipeline #25

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.12"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run test suite
run: |
pytest -v