This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
Merge pull request #102 from 7701F/master #212
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: Clang Format | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Format | |
uses: DoozyX/[email protected] | |
with: | |
source: './src' | |
clangFormatVersion: 11 | |
inplace: True | |
- name: Commit | |
uses: EndBug/add-and-commit@v4 | |
with: | |
author_name: Clang Robot | |
author_email: [email protected] | |
message: 'Committing clang-format changes' |