We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23fd80a commit ab46db0Copy full SHA for ab46db0
1 file changed
.github/workflows/ci.yml
@@ -40,6 +40,35 @@ jobs:
40
name: test_results
41
path: ${{runner.workspace}}/core/build-tests/test/test-results/**/*.json
42
43
+ windows-tests:
44
+ runs-on: windows-latest
45
+ steps:
46
+ - name: Checkout code
47
+ uses: actions/checkout@v3
48
+
49
+ - name: Cache build
50
+ uses: actions/cache@v3
51
+ with:
52
+ path: core/build-tests
53
+ key: ${{ runner.os }}-build-tests-${{ hashFiles('**/CMakeLists.txt') }}
54
55
+ - name: Create build directory
56
+ run: mkdir core\build-tests
57
+ shell: pwsh
58
59
+ - name: Build tests
60
+ run: |
61
+ cd core\build-tests
62
+ cmake .. -DENABLE_TESTS=ON
63
+ cmake --build . --config Release
64
65
66
+ - name: Run tests
67
68
69
+ ctest -C Release
70
71
72
cmake-integration-tests:
73
strategy:
74
matrix:
0 commit comments