We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f51e74 commit a8bf47eCopy full SHA for a8bf47e
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: ci.yml
2
+on:
3
+ push:
4
+
5
+jobs:
6
+ django-template-test:
7
+ name: Django Template Test
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python_version: [3.12, 3.13]
12
+ postgresql_version: [16, 17]
13
+ username_type: [email, username]
14
+ use_drf: [y, n]
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v6
20
+ - name: Run Django Template Tests
21
+ run: |
22
+ uvx cookiecutter django -v --no-input -o test/ \
23
+ python_version=${{ matrix.python_version }} \
24
+ postgresql_version=${{ matrix.postgresql_version }} \
25
+ username_type=${{ matrix.username_type }} \
26
+ use_drf=${{ matrix.use_drf }}
0 commit comments