forked from isosuite/gustaf
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 742 Bytes
/
tests.yml
File metadata and controls
33 lines (27 loc) · 742 Bytes
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
name: format check and runs tests
on:
pull_request:
branches: ["main"]
jobs:
build_and_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: install gustaf
run: |
python3 -m pip install numpy splinepy scipy
python3 setup.py install
- name: prepare test and test
run: |
python3 -m pip install pytest
pytest tests