-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disabling code-formatting action in the build
- Loading branch information
1 parent
03a2d26
commit 94add3b
Showing
1 changed file
with
20 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,26 +12,26 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
# format: | ||
# name: "Code Formatting" | ||
# runs-on: ubuntu-latest | ||
# if: github.ref == 'refs/heads/master' | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: DoozyX/[email protected] | ||
# with: | ||
# source: '.' | ||
# exclude: './doc' | ||
# extensions: 'h,cpp' | ||
# clangFormatVersion: 13 | ||
# inplace: True | ||
# - uses: EndBug/add-and-commit@v4 | ||
# with: | ||
# message: 'Committing clang-format changes' | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }} | ||
# | ||
format: | ||
name: "Code Formatting" | ||
runs-on: ubuntu-latest | ||
#if: github.ref == 'refs/heads/master' | ||
|
||
# steps: | ||
#- uses: actions/checkout@v2 | ||
#- uses: DoozyX/[email protected] | ||
# with: | ||
# source: '.' | ||
# exclude: './doc' | ||
# extensions: 'h,cpp' | ||
# clangFormatVersion: 13 | ||
# inplace: True | ||
#- uses: EndBug/add-and-commit@v4 | ||
# with: | ||
# message: 'Committing clang-format changes' | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }} | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
if: ${{ always() }} | ||
|