Skip to content

Update pipelines and bump version #1

Update pipelines and bump version

Update pipelines and bump version #1

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
branches: [ development ]
jobs:
analyze:
name: Analyze
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: microsoft/[email protected]
with:
msbuild-architecture: x64
- name: Setup .NET Core SDK 8.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build src\Wpf.Ui.Gallery\Wpf.Ui.Gallery.csproj --configuration Release --no-restore
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: "csharp"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1