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.
2 parents a8e0dfd + 72f3fc2 commit ea0def1Copy full SHA for ea0def1
2 files changed
.copier-answers.yaml
@@ -1,5 +1,5 @@
1
# Changes here will be overwritten by Copier
2
-_commit: b5fb449
+_commit: b8951e0
3
_src_path: https://github.com/python-project-templates/base.git
4
add_docs: false
5
add_extension: js
.github/workflows/build.yaml
@@ -27,7 +27,13 @@ permissions:
27
28
jobs:
29
build:
30
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
31
+
32
+ strategy:
33
+ matrix:
34
+ os: [ubuntu-latest]
35
+ python-version: ["3.11"]
36
+ node-version: [22.x]
37
38
steps:
39
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -40,8 +46,7 @@ jobs:
40
46
- name: Set up NodeJS
41
47
uses: actions-ext/node/setup@main
42
48
with:
43
- version: 22.x
44
- pnpm_version: '11'
49
+ version: ${{ matrix.node-version }}
45
50
51
- name: Install dependencies
52
run: make develop
0 commit comments