Skip to content

Commit

Permalink
Update matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeviant committed Jul 6, 2023
1 parent 52294df commit 78c1274
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ jobs:
run: devbox run test

test_python_version:
name: "Test (${{ matrix.python_version }})"
name: "Test (Python ${{ matrix.python_version.number }})"
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.8", "3.9"]
devbox_config: ["python-3_8", "python-3_9"]
python_version:
- number: "3.8"
config: "python-3_8"
- number: "3.9"
config: "python-3_9"
steps:
- uses: actions/checkout@v3

Expand All @@ -42,7 +45,7 @@ jobs:
uses: jetpack-io/[email protected]
with:
enable-cache: true
project-path: "ci/${{ matrix.devbox_config }}"
project-path: "ci/${{ matrix.python_version.config }}"

- name: Test
run: devbox --config ci/${{ matrix.devbox_config }} run test
run: devbox --config ci/${{ matrix.python_version.config }} run test

0 comments on commit 78c1274

Please sign in to comment.