You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
19
+
fail-fast: false
20
+
21
+
steps:
22
+
- uses: actions/checkout@v4
23
+
24
+
- name: Dependencies
25
+
shell: bash
26
+
run: |
27
+
pipx install check-jsonschema
28
+
29
+
- name: Check
30
+
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
31
+
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
0 commit comments