Skip to content

Device Vector added and Integrated with Neuro Vertices #614

Device Vector added and Integrated with Neuro Vertices

Device Vector added and Integrated with Neuro Vertices #614

Workflow file for this run

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/*"`