Skip to content

Fix workflows

Fix workflows #1

Workflow file for this run

name: Lint Check
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install clang-format (for C/C++)
run: sudo apt-get install clang-format
- name: Check C and C++ files with clang-format
run: |
bash clang_format.sh