Bump cpp-linter/cpp-linter-action from a37e579de27f4a759c4c5f18f1d43592076236c9 to 9ce54f46a992387a9e94f58ff489f36b4310dc7c #178
Workflow file for this run
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: cpp-linter | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
cpp-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: cpp-linter/cpp-linter-action@9ce54f46a992387a9e94f58ff489f36b4310dc7c | |
id: linter | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
style: '' | |
files-changed-only: false | |
ignore: crypto | |
- name: Fail fast?! | |
if: steps.linter.outputs.checks-failed != 0 | |
run: | | |
echo "some linter checks failed. ${{ steps.linter.outputs.checks-failed }}" | |
# for actual deployment | |
# run: exit 1 |