Skip to content

fix indent in issue body #284

fix indent in issue body

fix indent in issue body #284

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
COLUMNS: 200
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: pre-commit/[email protected]
copier-template-tester:
name: copier-template-tester (uv ${{ matrix.uv-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
uv-version: ["0.7.3", "latest"]
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v6
with:
version: ${{ matrix.uv-version }}
# set pre-commit cache
- name: set PY
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> "$GITHUB_ENV"
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Configure Git
run: |
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}"
- name: Run copier-template-tester
run: uv run ctt