Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: "Copier Template Tester"
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
run:
name: Tests on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.12"]
include:
- os: ubuntu-latest
python: '3.11'
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Run copier-template-tester tests
run: >-
uv tool run
--python=${{ matrix.python }}
--python-preference=managed
--from=copier-template-tester
--with=copier_templates_extensions
--with=corallium==2.0.1
ctt