Skip to content

Try and play nicer with UTF-8 input sequences #111

Try and play nicer with UTF-8 input sequences

Try and play nicer with UTF-8 input sequences #111

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- 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
- name: Check code format
run: make format-check