-
-
Notifications
You must be signed in to change notification settings - Fork 286
43 lines (38 loc) · 1.22 KB
/
test-v3.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test V3
on:
push:
branches: [ v3 ]
pull_request:
branches: [ v3 ]
jobs:
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: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Hatch
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Set Up Hatch Env
run: |
hatch env create
- name: Run Tests
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