We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 448c790 commit 4485b4bCopy full SHA for 4485b4b
2 files changed
.github/workflows/test.yml
@@ -4,12 +4,15 @@ on: [push]
4
jobs:
5
test:
6
name: Test
7
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, macos-latest]
11
steps:
12
- uses: actions/checkout@v2
13
- name: Change permission
14
run: chmod +x install_analysistoolsts.sh
15
- name: Build executable
16
run: sudo ./install_analysistoolsts.sh local
17
- name: run tests
- run: python testRunner.py
18
+ run: python3 testRunner.py
CMakeLists.txt
@@ -1,4 +1,5 @@
1
cmake_minimum_required(VERSION 3.16.3)
2
+set (CMAKE_CXX_STANDARD 14)
3
project(analysis_tools_ts)
0 commit comments