Skip to content

feat: update to .net 9 #103

feat: update to .net 9

feat: update to .net 9 #103

Workflow file for this run

name: CodeQL
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
env:
BUILD_CONFIGURATION: Release
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup DotNet
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
- name: Build
run: dotnet build Biosero.Orchestrator.DevTools.sln --configuration ${{ env.BUILD_CONFIGURATION }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3