Skip to content

apt issues?

apt issues? #70

Workflow file for this run

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