Skip to content

build: Update to .NET 8 #186

build: Update to .NET 8

build: Update to .NET 8 #186

Workflow file for this run

name: Scan Code
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '22 7 * * 1'
jobs:
scan-code:
name: Scan Code
runs-on: windows-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Set up .NET
uses: zyactions/dotnet-setup@v1
with:
global-json-file: src/global.json
- name: Restore .NET dependencies
uses: zyactions/dotnet-restore@v1
with:
working-directory: src/
- name: Build solution
run: dotnet build src/
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2