#1934: Add parameter to control minimal retention of historical LB data #2165
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: Check header guards | |
on: pull_request | |
jobs: | |
check-guards: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Setup Dependencies | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Install checkguard | |
run: pip install guardonce | |
- name: Check that include guards are properly named | |
run: ./scripts/check_guards.sh $(pwd) |