Update Dependencies, Add Net 9.0 Target, Remove Deprecated Blazor Project #427
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: "CodeQL" | |
on: | |
push: | |
paths: | |
- RecursiveExtractor.Blazor | |
- RecursiveExtractor.Cli | |
- RecursiveExtractor.Tests | |
- RecursiveExtractor | |
pull_request: | |
schedule: | |
- cron: '0 5 * * 2' | |
jobs: | |
CodeQL-Build: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v1.7.2 | |
with: | |
dotnet-version: 8.0.x | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: csharp | |
- name: Build RecursiveExtractor | |
run: | | |
dotnet restore RecursiveExtractor.sln | |
dotnet build -c Release | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |