Skip to content

modularize implementation. add cookiecutter template #3

modularize implementation. add cookiecutter template

modularize implementation. add cookiecutter template #3

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
test:
strategy:
matrix:
python:
- "3.13"
- "3.14"
runs-on: ubuntu-latest
permissions:
contents: read # needed for private repos
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
python-version: ${{ matrix.python }}
- name: test
run: make test