-
-
Notifications
You must be signed in to change notification settings - Fork 132
48 lines (37 loc) · 978 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
40
41
42
43
44
45
46
47
48
# Runs all tests
name: Test
on:
workflow_dispatch:
push:
branches:
- dev/develop
- main
pull_request:
branches:
- dev/develop
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.1'
- name: Install tools
run: sudo apt-get update && sudo apt-get install -y cmake ninja-build clang
- name: Install dependencies
run: sudo apt-get install -y python3-venv
- name: Build
run: |
mkdir build-Release
cd build-Release
cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++ -DBUILD_TESTS=ON ..
cmake --build .
- name: Run tests
run: |
cd build-Release
ctest