Skip to content

feat: add git commit hooks to automatically run find . \( -name '*.c'… #11

feat: add git commit hooks to automatically run find . \( -name '*.c'…

feat: add git commit hooks to automatically run find . \( -name '*.c'… #11

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: Check formatting
run: make format-check
- name: Lint
run: make lint
- name: Build
run: make