Skip to content
Merged
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
15 changes: 11 additions & 4 deletions .github/workflows/test-v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,22 @@ on:
branches: [ v3 ]

jobs:
run-tests:
test:
name: py=${{ matrix.python-version }}, np=${{ matrix.numpy-version }}, deps=${{ matrix.dependency-set }}

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
numpy-version: ['1.24', '1.26']
dependency-set: ["minimal", "optional"]

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Hatch
run: |
Expand All @@ -29,8 +36,8 @@ jobs:
hatch env create
- name: Run Tests
run: |
hatch run test:run
hatch env run --env test.py${{ matrix.python-version }}-${{ matrix.numpy-version }}-${{ matrix.dependency-set }} run
- name: Run mypy
continue-on-error: true
run: |
hatch run test:run-mypy
hatch run test:run-mypy