Lint #2301
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: "Lint" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
- "stable-*.*" | |
schedule: | |
# Every day at 3:10 AM UTC | |
- cron: '10 3 * * *' | |
jobs: | |
gaplint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install dependencies . . ." | |
run: sudo pip install gaplint==1.3.2 | |
- name: "Run gaplint . . ." | |
run: bash etc/gaplint.sh | |
cpplint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install cpplint | |
- run: bash etc/cpplint.sh |