chore!: Warn kitfile.print will be deprecated #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |