MueLu: Add clang-format workflow and run it on MueLu #6
Workflow file for this run
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: MueLu clang-format check | ||
on: [pull_request] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: DoozyX/[email protected] | ||
with: | ||
source: './packages/muelu/src' | ||
exclude: './lib' | ||
extensions: 'cpp,hpp' | ||
# the action uses clang-format 8.0.1 when clang-format 8 is specified | ||
clangFormatVersion: 8 | ||
style: file | ||
inplace: False |