This repository has been archived by the owner on Jan 21, 2025. It is now read-only.
Handle [rare] case where PGS has 0 variance by abstaining from PGS ad… #425
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [ push ] | |
jobs: | |
ci: | |
strategy: | |
fail-fast: false | |
name: Run pytest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out pipeline code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Python Poetry Action | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: '1.3.2' | |
- name: Install | |
run: poetry install | |
- name: Test | |
run: poetry run pytest | |