-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (47 loc) · 1.1 KB
/
test.yml
File metadata and controls
55 lines (47 loc) · 1.1 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
on:
workflow_dispatch:
workflow_call:
pull_request:
jobs:
test-windows:
runs-on: windows-2025
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Caching
uses: ./.github/actions/caching
with:
key-prefix: windows-build
- name: Configure and build
uses: ./.github/actions/common-windows
with:
config-preset: Debug
build-preset: Tests
- name: Run Tests
run: |
cd ./build/
ctest
test-macos:
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Caching
uses: ./.github/actions/caching
with:
key-prefix: macos-build
- name: Configure and build
uses: ./.github/actions/common-macos
with:
config-preset: Debug
build-preset: Tests
vcpkg-triplet: arm64-osx
arch: arm64
- name: Run Tests
run: |
cd ./build/
ctest