Skip to content

chore!: Warn kitfile.print will be deprecated #13

chore!: Warn kitfile.print will be deprecated

chore!: Warn kitfile.print will be deprecated #13

Workflow file for this run

name: PR Builds
on:
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: poetry
- name: Install dependencies
run: |
poetry install --with=dev --without=docs
- name: Run Tests
run: poetry run pytest
- name: Run Ruff checker
run: poetry run ruff check