Skip to content

Minor documentation tweaks (#111) #284

Minor documentation tweaks (#111)

Minor documentation tweaks (#111) #284

Workflow file for this run

name: 🧪 Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
Tests:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.py }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
os:
- Ubuntu
- Windows
- MacOs
py:
- "3.11"
- "3.10"
- "3.9"
steps:
- uses: actions/checkout@v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.6.1
- name: Install dependencies
run: |
poetry update
poetry run pip install --upgrade setuptools
poetry install
- name: Run tests
run: poetry run pytest