Tests.
CI / build-macos (push) Waiting to run
CI / release (push) Blocked by required conditions
CI / build-linux (gcc) (push) Failing after 21s
CI / build-linux (clang) (push) Failing after 21s
CI / integration-test (push) Has been skipped
CI / static-analysis (push) Failing after 41s

This commit is contained in:
2025-11-28 06:41:42 +01:00
parent 9f4a3568d9
commit f298207926
38 changed files with 5192 additions and 21 deletions
+13
View File
@@ -35,6 +35,12 @@ jobs:
cmake -DCMAKE_C_COMPILER=${{ matrix.compiler }} ..
make
- name: Run unit tests
run: |
cd build
make run_tests
./tests/run_tests
build-macos:
runs-on: macos-latest
steps:
@@ -52,6 +58,13 @@ jobs:
./nwedav --version
./webdavctl --help
- name: Build and run tests with CMake
run: |
mkdir -p build && cd build
cmake ..
make run_tests
./tests/run_tests
static-analysis:
runs-on: ubuntu-latest
steps: