-
-
Notifications
You must be signed in to change notification settings - Fork 6
73 lines (68 loc) · 1.76 KB
/
tests.yml
File metadata and controls
73 lines (68 loc) · 1.76 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Run Tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: 3.x
- uses: pre-commit/action@v3.0.1
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install
run: |
sudo apt-get install sox ninja-build
- name: Build
run: |
mkdir build
cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=Debug
cmake --build build
- name: Run tests
run: |
CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target check
pytest:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: pip3 install .[dev]
- run: python3 -m pytest
nodetest:
runs-on: ubuntu-latest
steps:
- name: Install Build Dependencies
uses: mymindstorm/setup-emsdk@v14
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Build
run: |
emcmake cmake -S . -B jsbuild
cmake --build jsbuild
- name: Run tests
run: |
(cd jsbuild && npm install --also=dev)
(cd jsbuild && npm test)
(cd jsbuild && npm run tstest)