Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: expand test matrix and upgrade steps #262

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading