Skip to content

Merge branch '1236-bug-job-not-failing-with-setup-script' into devel #1596

Merge branch '1236-bug-job-not-failing-with-setup-script' into devel

Merge branch '1236-bug-job-not-failing-with-setup-script' into devel #1596

Workflow file for this run

name: Unit-Testing
on: push
jobs:
unit-test:
runs-on: ubuntu-20.04
if: ${{ always() }}
steps:
- uses: actions/checkout@v2
- name: Update ubuntu
run: sudo apt-get update
- name: Install dependencies
run: |
./scripts/generate_datafed.sh
sudo ./scripts/install_core_dependencies.sh
./scripts/generate_datafed.sh
- name: Build
run: |
cmake -S. -B build -DCMAKE_BUILD_TYPE=Debug -DBUILD_WEB_SERVER=OFF
cmake --build build -j4
- name: Run tests
run: |
cmake --build build --target test