Skip to content

Commit 2e91334

Browse files
committed
chore: manual cruft update
1 parent 634e5b1 commit 2e91334

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "cfc5c69a0ba5b18e9f6bc5cd118eefb687fb7f50",
2+
"_commit": "08cc6f2a85e537a839165028d4d39006b452f13e",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "cfc5c69a0ba5b18e9f6bc5cd118eefb687fb7f50",
3+
"commit": "08cc6f2a85e537a839165028d4d39006b452f13e",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"development_status": "Development Status :: 1 - Planning",
2020
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
21-
"_commit": "cfc5c69a0ba5b18e9f6bc5cd118eefb687fb7f50"
21+
"_commit": "08cc6f2a85e537a839165028d4d39006b452f13e"
2222
}
2323
},
2424
"directory": null

.github/workflows/test-python.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,18 @@ on:
2828

2929
jobs:
3030
test-python:
31-
name: Run Python Tests on ${{ matrix.os }}/${{ matrix.python-version }}
31+
name: Run Python Tests on ${{ matrix.os }}/${{ matrix.python }}
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
36-
os: [ ubuntu-latest, windows-latest, macos-latest ]
37-
35+
include:
36+
- { python: "3.9", os: "ubuntu-latest" }
37+
- { python: "3.10", os: "ubuntu-latest" }
38+
- { python: "3.11", os: "ubuntu-latest" }
39+
- { python: "3.12", os: "ubuntu-latest" }
40+
- { python: "3.13", os: "ubuntu-latest" }
41+
- { python: "3.13", os: "macos-latest" }
42+
- { python: "3.13", os: "windows-latest" }
3843
steps:
3944
- name: Checkout code
4045
uses: actions/checkout@v4
@@ -45,21 +50,21 @@ jobs:
4550
- name: Set up Python
4651
uses: actions/setup-python@v5
4752
with:
48-
python-version: ${{ matrix.python-version }}
53+
python-version: ${{ matrix.python }}
4954

5055
- name: Run test suite
51-
run: uvx nox -s tests-python-${{ matrix.python-version }}
56+
run: uvx nox -s tests-python-${{ matrix.python }}
5257

5358
- name: Upload test reports
5459
uses: actions/upload-artifact@v4
5560
with:
56-
name: test-results-${{ matrix.os }}-py${{ matrix.python-version }}
61+
name: test-results-${{ matrix.os }}-py${{ matrix.python }}
5762
path: tests/results/*.xml
5863
retention-days: 5
5964

6065
- name: Upload coverage report
6166
uses: actions/upload-artifact@v4
6267
with:
63-
name: coverage-report-${{ matrix.os }}-py${{ matrix.python-version }}
68+
name: coverage-report-${{ matrix.os }}-py${{ matrix.python }}
6469
path: coverage.xml
6570
retention-days: 5

0 commit comments

Comments
 (0)