Skip to content

Pf0.6.0 (#13)

Pf0.6.0 (#13) #166

Workflow file for this run

name: CI
on: [pull_request, push, workflow_dispatch]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12"]
exclude:
# Exclude Python 3.10 on macOS latest, because trouble.
- os: "macos-latest"
python-version: "3.10"
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install
run: |
pip install poetry
poetry install --with test
- name: Run tests
run: poetry run pytest