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 2a0ad42 commit 0e93449Copy full SHA for 0e93449
.github/workflows/tests.yml
@@ -30,7 +30,11 @@ jobs:
30
- os: macos-15
31
cmake-install: "brew install cmake"
32
dependencies: "brew install openssl"
33
- make: make ./countly-tests && ./countly-tests
+ make: |
34
+ mkdir -p build && cd build
35
+ cmake -DCOUNTLY_BUILD_TESTS=1 ..
36
+ cmake --build . --config Release
37
+ ctest --output-on-failure
38
- os: ubuntu-24.04
39
cmake-install: |
40
sudo apt-get update && sudo apt-get install -y \
@@ -41,9 +45,9 @@ jobs:
41
45
libssl-dev
42
46
make: |
43
47
mkdir -p build && cd build
44
- cmake ..
- make countly-tests
- ./countly-tests
48
49
50
51
52
steps:
53
- name: Checkout code
0 commit comments