Skip to content

Commit

Permalink
Add CI to check coding convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Lai-YT authored and leewei05 committed Aug 11, 2023
1 parent 8e9d184 commit a358fbc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: coding convention
run: |
sudo apt-get install -q -y clang-format
scripts/check-format.sh

0 comments on commit a358fbc

Please sign in to comment.