This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
chore(deps): update dependency verify.xunit to v23.2.3 (#639) #1059
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: Perform code analysis using CodeQL | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
env: | |
SOLUTION_PATH: ./NoPlan.sln | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- "csharp" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Build .NET solution | |
run: dotnet build ${{ env.SOLUTION_PATH }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |