Skip to content

refactor: separate responsibilities into dedicated modules #14

refactor: separate responsibilities into dedicated modules

refactor: separate responsibilities into dedicated modules #14

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_call:
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