Skip to content

Bump github/codeql-action from 4.36.1 to 4.36.2 in the dependencies group #624

Bump github/codeql-action from 4.36.1 to 4.36.2 in the dependencies group

Bump github/codeql-action from 4.36.1 to 4.36.2 in the dependencies group #624

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
- 'LICENSE'
- '.github/workflows/docs.yml'
- '.github/workflows/publish.yml'
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
- 'LICENSE'
- '.github/workflows/docs.yml'
- '.github/workflows/publish.yml'
permissions:
contents: read
env:
DOTNET_VERSION: 8.0.x
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Use .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build project
run: dotnet build -c Release
- name: Run test cases
run: dotnet test -c Release --no-build
- name: Lint C# code
run: dotnet format --verify-no-changes --verbosity detailed --no-restore