Skip to content

remove support for python 3.10 and modernize type hints etc. #67

remove support for python 3.10 and modernize type hints etc.

remove support for python 3.10 and modernize type hints etc. #67

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: test
on: [push, pull_request]
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/[email protected]
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --group dev --group test
- name: Run tests
run: uv run python -m pytest -v
yamllint:
name: Yaml Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/[email protected]
with:
version: "latest"
- name: Set up Python
run: uv python install 3.11
- name: Install Dependencies
run: |
uv tool install yamllint
- name: Run yamllint
run: uvx yamllint */