Fix issue #2562: Looks like the View Tab Bar "folder icon" is getting… #4860
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: CodeQL Analysis | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
id: checkout_repo | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
id: init_codeql | |
uses: github/codeql-action/init@v3 | |
with: | |
queries: security-and-quality | |
- name: Build project | |
id: build_project | |
shell: pwsh | |
run: | | |
.\DownloadDeps.cmd | |
.\BuildAll.vs2022.cmd x64 -ci | |
- name: Perform CodeQL Analysis | |
id: analyze_codeql | |
uses: github/codeql-action/analyze@v3 | |
# Built with ❤ by [Pipeline Foundation](https://pipeline.foundation) |