We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0043f commit 25b5080Copy full SHA for 25b5080
.github/workflows/build.yml
@@ -34,6 +34,22 @@ jobs:
34
make test defines=${{matrix.defines}} config=coverage -j2
35
bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov -X search -t ${{secrets.CODECOV_TOKEN}} -B ${{github.ref}}
36
37
+ unix-cmake:
38
+ strategy:
39
+ matrix:
40
+ os: [ubuntu, macos]
41
+ name: ${{matrix.os}} cmake
42
+ runs-on: ${{matrix.os}}-latest
43
+ steps:
44
+ - uses: actions/checkout@v1
45
+ - name: cmake configure
46
+ run: |
47
+ mkdir cmake && cd cmake
48
+ cmake .. -D PUGIXML_BUILD_TESTS=ON
49
+ - name: cmake test
50
51
+ make -C cmake -j2
52
+
53
windows:
54
runs-on: windows-latest
55
strategy:
0 commit comments