Sankarshan mishra patch 1 #1
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: include what you use Github action | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up environment | |
env: | |
ACTIONS_STEP_DEBUG: true | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: v2 | |
- name: include what you use | |
uses: EmilGedda/[email protected] | |
with: | |
compilation-database-path: '.' # Use default value or specify a valid path | |
output-format: 'iwyu' # Use default value or specify 'clang' or 'iwyu' | |
no-error: false # Use default value or specify true/false |