Skip to content

Adding a small fix to the commandline in the summary as it persisted … #2

Adding a small fix to the commandline in the summary as it persisted …

Adding a small fix to the commandline in the summary as it persisted … #2

Workflow file for this run

name: Compile WhoYouCalling
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
- name: Restore dependencies
run: dotnet restore
- name: Compile solution
run: dotnet build --configuration Release