Skip to content

Commit

Permalink
Test Python 3.9 and 3.13 on CI, test minimum dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Oct 11, 2024
1 parent 7c3d3a9 commit c1e11ba
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,24 @@ on:

jobs:
unit-tests:
name: Unit tests
name: Unit tests (Python ${{ matrix.python-version }}, ${{ matrix.dependency-type }} dependencies)
runs-on: ubuntu-latest
strategy:
matrix:
include:
- dependency-type: minimum
python-version: "3.9"
- dependency-type: standard
python-version: "3.13"
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
python_version: ${{ matrix.python-version }}
dependency_type: ${{ matrix.dependency-type }}

- name: Install extension dependencies and build the extension
run: ./scripts/install.sh
Expand Down

0 comments on commit c1e11ba

Please sign in to comment.