Skip to content

fixup! test: added endian util function tests #19

fixup! test: added endian util function tests

fixup! test: added endian util function tests #19

Workflow file for this run

name: Build and Unit Tests
on: [push]
jobs:
build_and_unit_tests:
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install build-essential
sudo apt install cmake
sudo apt install libsodium-dev
sudo apt install libgtest-dev
- name: Setup Gtest
run: |
cd $(mktemp -d)
cmake /usr/src/googletest
make
sudo make install
cd -
- name: Checkout the repository
uses: actions/checkout@v3
with:
submodules: "true"
- name: Build
run: |
./scripts/create-debug-makefiles.sh
make
- name: Run Unit Tests
run: |
make test