Skip to content

Commit

Permalink
ci: expand test matrix and upgrade steps (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Dec 20, 2024
1 parent 18c9c7c commit c14d387
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
project-type: ["app", "package"]

name: Python ${{ matrix.python-version }} ${{ matrix.project-type }}
Expand All @@ -37,10 +37,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 21
node-version: 23

- name: Install @devcontainers/cli
run: npm install --location=global @devcontainers/cli@0.58.0
run: npm install --location=global @devcontainers/cli@0.72.0

- name: Start Dev Container with Python ${{ matrix.python-version }}
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 21
node-version: 23

- name: Install @devcontainers/cli
run: npm install --location=global @devcontainers/cli@0.58.0
run: npm install --location=global @devcontainers/cli@0.72.0

- name: Start Dev Container
run: |
Expand All @@ -42,6 +42,6 @@ jobs:
run: devcontainer exec --workspace-folder . poe test

- name: Upload coverage
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
files: reports/coverage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variables:
- .npm_cache
before_script:
- mkdir -p .apk_cache && apk add --cache-dir .apk_cache npm
- npm install --cache .npm_cache --global --prefer-offline @devcontainers/cli@0.58.0
- npm install --cache .npm_cache --global --prefer-offline @devcontainers/cli@0.72.0

# Build the Dev Container.
Build:
Expand Down

0 comments on commit c14d387

Please sign in to comment.