Skip to content

Commit

Permalink
Add GitHub workflow to check for correctly set include guards
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeyer committed Apr 3, 2020
1 parent 4b773fc commit 469cc02
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/include-guards.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: check-include-guards

on: [push, pull_request]

jobs:
include-guards:
name: Check include guards
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check include guards
uses: sbeyer/[email protected]
with:
only: '^bandit/'
ignore: '/external/'

0 comments on commit 469cc02

Please sign in to comment.