Skip to content

[DEV] Bumped version number #69

[DEV] Bumped version number

[DEV] Bumped version number #69

Workflow file for this run

name: Test Python Package
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Chechout with submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: "poetry"
- name: Install Dependencies
run: poetry install --no-interaction
- name: Run Tests
run: poetry run pytest