We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2f3002 commit 48ba35eCopy full SHA for 48ba35e
1 file changed
.github/workflows/ci.yml
@@ -88,8 +88,17 @@ jobs:
88
working-directory: build
89
run: ctest -C ${{matrix.build}} -j4
90
91
+ bazel:
92
+ runs-on: ubuntu-latest
93
+ name: Bazel
94
+ steps:
95
+ - uses: actions/checkout@v4
96
+ - uses: bazel-contrib/setup-bazel@0.15.0
97
+ - name: test
98
+ run: bazel test :cpp-semver-tests
99
+
100
coverage:
- needs: [ macos, linux, windows ]
101
+ needs: [ macos, linux, windows, bazel ]
102
runs-on: ubuntu-latest
103
env:
104
CTEST_OUTPUT_ON_FAILURE: 1
0 commit comments