Skip to content

chore(main): release 1.7.1 (#95) #56

chore(main): release 1.7.1 (#95)

chore(main): release 1.7.1 (#95) #56

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
paths:
- "**.cs"
- "**.csproj"
schedule:
- cron: "0 6 * * 1" # Monday 6am UTC
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
packages: read
actions: read
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.x
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: csharp
queries: security-and-quality
- name: Build
run: dotnet build --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:csharp"