fix(hooks): guard driver-call out-params behind a success check (#312) #423
Workflow file for this run
This file contains hidden or 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
| # This is a basic workflow to help you get started with Actions | |
| name: style | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| on: | |
| pull_request: | |
| jobs: | |
| cpplint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: reviewdog/action-cpplint@master | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| args: --linelength=120 |