Skip to content

feat(flipper-app): initial commit #4

feat(flipper-app): initial commit

feat(flipper-app): initial commit #4

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cppcheck clang-format
- name: Run linter
run: make linter
- name: Check format
run: clang-format --dry-run --Werror *.c *.h tests/*.c
- name: Run tests
run: make test