1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 03:34:56 +02:00

.github/workflows/CI.yml: build and run tests.

This commit is contained in:
Henrik Hautakoski 2023-03-09 17:47:46 +01:00
parent dbbdc896e1
commit 8764ecc4c1

View file

@ -30,12 +30,16 @@ jobs:
if [ "$RUNNER_OS" == "macOS" ]; then
SSL_OPTS="-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1"
fi
cmake ${SSL_OPTS} -B build
cmake -DENABLE_TESTING=ON ${SSL_OPTS} -B build
- name: Build
shell: bash
run: cmake --build build
- name: Test
shell: bash
run: ctest --verbose --test-dir build -C Debug
- name: Upload artifact
uses: actions/upload-artifact@v1
with: