Skip to content

Merge pull request #74 from icui/code-along #387

Merge pull request #74 from icui/code-along

Merge pull request #74 from icui/code-along #387

Workflow file for this run

name: Unittests
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check GNU and Cmake versions
run: gcc --version && cmake --version
- name: Checkout repository
uses: actions/checkout@v1
- name: Get submodules
run: git submodule init
&& git submodule update
- name: Configure
run: cmake -S . -B build
- name: Build
run: cmake --build build
- name: Run all tests
run: cd build/tests/unit-tests
&& ctest