Skip to content

Try and handle up/down a bit better (#29) #78

Try and handle up/down a bit better (#29)

Try and handle up/down a bit better (#29) #78

name: Build and Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build & Test
run: make test
- name: Fuzz
run: make fuzz
- name: Valgrind
run: |
sudo apt update
sudo apt install -y valgrind
valgrind --leak-check=full --error-exitcode=1 ./embedded_cli_test
- name: Test no history
run: |
make clean
make CFLAGS="-DEMBEDDED_CLI_HISTORY_LEN=0 -I." test