Skip to content

Update .clang-tidy, Makefile, and documentation for improved code qua… #12

Update .clang-tidy, Makefile, and documentation for improved code qua…

Update .clang-tidy, Makefile, and documentation for improved code qua… #12

Workflow file for this run

name: C CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-tidy
run: sudo apt-get update && sudo apt-get install -y clang-tidy
- name: Check formatting
run: make format-check
- name: Lint
run: make lint
- name: Build
run: make