Skip to content

fix: revive the CI

fix: revive the CI #31

Workflow file for this run

name: "Check Clang Format"
on: [push, pull_request]
jobs:
format:
name: "Check Clang Format"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Install clang-format"
run: |
sudo apt-get update
sudo apt-get install clang-format
- name: "Format Codes"
run: clang-format -i src/*.cpp src/*/*.cpp src/*/*.h
- name: Check diff
run: git diff --exit-code HEAD
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v2
with:
commit-message: "style: format codes"
title: "style: format codes for ${{ github.ref }}"
labels: "auto-pr/style"
assignees: "${{ github.actor }}"
reviewers: "${{ github.actor }}"
branch: "auto-pr/clang-format/${{ github.ref }}"