Skip to content

chore: update changelog #28

chore: update changelog

chore: update changelog #28

Workflow file for this run

name: Tests and Linting
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
env:
SKIP: no-commit-to-branch
Test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry & dependencies
run: |
pip install poetry==1.8.2
poetry install
- name: Test with Pytest on Python
run: poetry run pytest