Skip to content

init commit.

init commit. #17

Workflow file for this run

name: PR tests
on:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
exclude:
- os: macos-latest
python-version: '3.8'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- run: poetry install
- run: poetry run pytest
continue-on-error: true