diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 9684ea2..091ee19 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: b5fb449 +_commit: b8951e0 _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: js diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fd0b8d6..d962335 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,7 +27,13 @@ permissions: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest] + python-version: ["3.11"] + node-version: [22.x] steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 @@ -40,8 +46,7 @@ jobs: - name: Set up NodeJS uses: actions-ext/node/setup@main with: - version: 22.x - pnpm_version: '11' + version: ${{ matrix.node-version }} - name: Install dependencies run: make develop