FullStackHero 10 .NET Starter Kit Release Merge #40
This file contains hidden or 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: | |
| pull_request: | |
| branches: [main, develop] | |
| paths: | |
| - 'src/**' | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| permissions: | |
| security-events: write | |
| contents: read | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: github/codeql-action/init@v3 | |
| with: | |
| languages: csharp | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| dotnet-quality: 'preview' | |
| - run: dotnet build src/FSH.Framework.slnx -c Release | |
| - uses: github/codeql-action/analyze@v3 |