chore: add nix installation #465
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/*.h src/**/*.cpp src/**/*.h src/**/**/*.cpp src/**/**/*.h src/**/*.hpp | |
- name: Check diff | |
run: git diff --exit-code HEAD | |
- name: Create Pull Request | |
if: failure() | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: "style: format codes" | |
title: "Format codes for ${{ github.ref }}" | |
labels: "style" | |
assignees: "${{ github.actor }}" | |
reviewers: "${{ github.actor }}" | |
branch: "auto-pr/clang-format/${{ github.ref }}" |