Skip to content

UI ux tweaks

UI ux tweaks #537

Workflow file for this run

name: Run Core tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- name: make
run: cd core && make
- name: make check
run: cd core && make check && export TEST_RESULTS=`./unittests`
- name: valgrind check
run: sudo apt-get install -y valgrind && cd core && make check && export TEST_RESULTS=`valgrind ./unittests`