Skip to content

remove test job now that cmake is used exclusively #32

remove test job now that cmake is used exclusively

remove test job now that cmake is used exclusively #32

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
cmake-test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update && sudo apt install -y build-essential cmake pkg-config uuid-dev libssl-dev
- name: Configure
run: |
mkdir build && cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: |
cmake --build build -j $(nproc)
- name: Run Tests
run: |
cd build && ctest --output-on-failure