Skip to content

Refactor GitHub template commands (#64) #126

Refactor GitHub template commands (#64)

Refactor GitHub template commands (#64) #126

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
template:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
version: "0.4.12"
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }} --frozen
- name: Run Copier
run: |
uv run copier copy . . --trust --defaults
rm -rf template
- name: Run linter
run: ./scripts/lint
working-directory: "package-name"
- name: Run tests
run: ./scripts/test
working-directory: "package-name"