Skip to content

Updates

Updates #106

Workflow file for this run

name: Test the library
on:
pull_request:
types: [opened, synchronize, edited]
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout πŸ”
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
- name: Set up Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry and pre-commit πŸ’ˆ
run: pip install poetry==1.8.5 pre-commit
- name: Install dependencies πŸ› 
run: poetry install
- name: Run pre-commit πŸ€”
run: pre-commit run --all-files
- name: Run tests 🌈
run: poetry run invoke test