Skip to content

Commit

Permalink
Test against different Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeviant committed Jul 6, 2023
1 parent d5e919b commit ae1b398
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,23 @@ jobs:

- name: Test
run: devbox run test

test_python_version:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3_8", "3_9"]
steps:
- uses: actions/checkout@v3

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4

- name: Install Devbox
uses: jetpack-io/[email protected]
with:
enable-cache: true
project-path: "ci/python-${{ matrix.python_version }}"

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

0 comments on commit ae1b398

Please sign in to comment.