Skip to content

README.rst: Removes dysfunctional badges and adds logo graphics to repo #128

README.rst: Removes dysfunctional badges and adds logo graphics to repo

README.rst: Removes dysfunctional badges and adds logo graphics to repo #128

Workflow file for this run

---
name: quality checks
on:
pull_request:
push:
branches:
- main
workflow_call:
inputs:
ref:
required: true
type: string
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pipx run hatch run mypy:check
tests:
needs: ["mypy"]
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pipx run hatch run tests:check
...