-
Notifications
You must be signed in to change notification settings - Fork 13
39 lines (31 loc) · 946 Bytes
/
test.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
name: Builds minimal and runs tests
on:
push
permissions:
contents: read
jobs:
build_and_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: build
if: matrix.os != 'windows-latest'
run: |
pip install ".[test]" -v --config-settings=cmake.args="-DSPLINEPY_MORE=OFF;-DSPLINEPY_ENABLE_WARNINGS=ON" --config-settings=cmake.build-type="Debug"
- name: build for windows
if: matrix.os == 'windows-latest'
run: |
pip install ".[test]" -v --config-settings=cmake.args="-DSPLINEPY_MORE=OFF"
- name: test
run: |
pytest tests