Workflow test #5
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: Download and run codeQL | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
jobs: | |
download_and_run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Download and extract codeql-bundle | |
run: | | |
curl -o -v codeql-bundle.tar.gz https://github.com/github/codeql-action/releases/download/codeql-bundle-v2.15.5/codeql-bundle-linux64.tar.gz | |
tar -xzvf codeql-bundle.tar.gz | |
- name: Run codeQL | |
run: | | |
codeql-bundle/codeql test run languages/cpp |