Skip to content

add

add #1

Workflow file for this run

name: Run test suite

Check failure on line 1 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

(Line: 36, Col: 14): A mapping was not expected
on:
pull_request:
branches:
- main
push:
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
strategy:
matrix:
python-version: [3.14]
type: [unit, integration]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup application tooling
uses: jdx/mise-action@v2
with:
cache: true
cache_key_prefix: dependencies-${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v4
with:
path: .venv
key: {{ "v0-${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock')}}" }}
restore-keys: |
{{ "v0-${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock')}}" }}
- name: Run tests
run: |
just {{ "${{ matrix.type }}" }}