Device Vector added and Integrated with Neuro Vertices #614
This file contains hidden or 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 for Code Style Violations | |
on: | |
push: | |
paths: | |
- '**.cpp' | |
- '**.h' | |
branches: | |
- master | |
pull_request: | |
paths: | |
- '**.cpp' | |
- '**.h' | |
types: [opened, synchronize, reopened] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- name: Install missing software on ubuntu | |
run: sudo apt-get install clang-format | |
- name: Code format check | |
run: | | |
echo "*** running clang-format to check for style violations" | |
clang-format --dry-run --Werror --style=file `find . -type f \( -iname "*.cpp" -or -iname "*.h" \) ! -path "./Testing/lib/*" ! -path "./ThirdParty/*" ! -path "./docs/*"` |