Skip to content

docs: update README.md color codes #12

docs: update README.md color codes

docs: update README.md color codes #12

Workflow file for this run

name: clang-format Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install clang-format
run: sudo apt-get install -y clang-format
- name: Check code formatting
id: check_formatting
run: ./scripts/clang-check-format.sh
shell: bash