chore(devfile) link v2 devfile to :3.17; set image refs to registry.r… #83
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: cpplint | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
- run: pip install cpplint | |
# - run: cpplint --filter= # print out all cpplint rules | |
- run: cpplint --recursive . || true # all issues to be fixed | |
# TODO: Remove each filter one at a time and fix those failures | |
- run: cpplint --filter=-build,-legal,-readability,-runtime,-whitespace --recursive . |