Skip to content

Potential fix for code scanning alert no. 167: Useless assignment to … #1375

Potential fix for code scanning alert no. 167: Useless assignment to …

Potential fix for code scanning alert no. 167: Useless assignment to … #1375

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore CleanArchitecture.Blazor.slnx
- name: Build
run: dotnet build CleanArchitecture.Blazor.slnx --configuration Debug --no-restore