File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Tests
3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
- trex :
6
+ tests :
7
7
strategy :
8
8
matrix :
9
9
os : [ubuntu-latest, windows-latest, macos-latest]
@@ -13,10 +13,10 @@ jobs:
13
13
- uses : actions/checkout@v3
14
14
15
15
- name : Configure CMake
16
- run : cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
16
+ run : cmake -B ${{ github.workspace }}/tests/ build -S ${{ github.workspace }}/tests -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
17
17
18
18
- name : Build
19
- run : cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }}
19
+ run : cmake --build ${{ github.workspace }}/tests/ build --config ${{ matrix.build_type }}
20
20
21
21
- name : Test
22
- run : ctest --test-dir ${{ github.workspace }}/build --output-on-failure
22
+ run : ctest --test-dir ${{ github.workspace }}/tests/ build --output-on-failure
You can’t perform that action at this time.
0 commit comments