Skip to content

wip

wip #1

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
issues:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Roslyn Compiler Warnings
runs-on: [self-hosted]
env:
# Required for actions/setup-dotnet@v3 on self-hosted runners where runners don't have sudo permissions
DOTNET_INSTALL_DIR: "./.dotnet"
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x.x
# Execute the build
- name: Execute Release Build
working-directory: ./src
run: dotnet build --configuration Release