Skip to content

chore(tests): add more tests #7

chore(tests): add more tests

chore(tests): add more tests #7

name: Build & Test
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Valgrind
run: sudo apt-get update && sudo apt-get install valgrind -y
- uses: actions/checkout@v3
- name: Build and Test
run: |
./configure && make && make test && export LD_LIBRARY_PATH=./lib:$LD_LIBRARY_PATH && export MLN_TEST_RUNNER=valgrind && make run