Skip to content

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 18.4.0 #69

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 18.4.0

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 18.4.0 #69

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
schedule:
- cron: '30 6 * * 1'
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- csharp
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore solution
run: dotnet restore modisette.sln
- name: Build solution
run: dotnet build modisette.sln --configuration Release --no-restore
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3