Skip to content

some ignore changes and test workflow #1

some ignore changes and test workflow

some ignore changes and test workflow #1

Workflow file for this run

name: Test CI
on: push
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
poetry-version: ["1.0", "1.1.15"]
os: [ubuntu-18.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install Requirements
run: poetry install
- name: Test Phenotron
run: poetry run pytest