Skip to content

Unit tests

Unit tests #1

Workflow file for this run

#
# test.yml
#
# Copyright The RSCLib Contributors.
#
# This file is part of RSCLib.
#
# RSCLib is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RSCLib is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with RSCLib. If not, see <http://www.gnu.org/licenses/>.
#
#
name: Unit tests
on:
push:
branches: [dev]
pull_request:
branches: [main, dev]
# 'workflow_dispatch' allows manual execution of this workflow under the repository's 'Actions' tab
workflow_dispatch:
jobs:
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt install -y cmake libcmocka0 libcmocka-dev
- name: Compile the test
run: |
cd tests
cmake .
make
- name: Execute the test
run: ./tests/rsc_test