This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
Clean up more files when running rake clean
#396
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: Format Code | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
clang-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DoozyX/clang-format-lint-action@v0.12 | |
with: | |
source: "." | |
extensions: "hpp,cpp" | |
clangFormatVersion: 12 | |
inplace: True | |
- uses: EndBug/add-and-commit@v4 | |
with: | |
author_name: Tim Morgan | |
author_email: tim@timmorgan.org | |
message: "Format code with clang-format (automated)" |