Skip to content

Commit d93112d

Browse files
committed
update tests setup
1 parent a717964 commit d93112d

3 files changed

Lines changed: 328 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,20 @@ on:
77

88
jobs:
99
test:
10-
name: "Test"
10+
name: "Test on Python ${{ matrix.python-version }}"
1111
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1216
steps:
1317
- name: Checkout codebase
1418
uses: actions/checkout@v6
1519

1620
- name: Install the latest version of uv
1721
uses: astral-sh/setup-uv@v7
1822
with:
23+
python-version: ${{ matrix.python-version }}
1924
enable-cache: true
2025

2126
- name: Run tests

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "cookieplone-codesyntax"
33
version = "0.1.0"
44
description = "CodeSyntax cookiecutter template customization"
5+
requires-python = ">=3.10"
56
dependencies = []
67

78
[dependency-groups]

0 commit comments

Comments
 (0)