Skip to content

Commit

Permalink
WI #2488 Specify sln file in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fm-117 committed Apr 21, 2023
1 parent 18d1cb1 commit be44ff7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/buildAndTest.yml
Expand Up @@ -22,8 +22,8 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
run: dotnet restore .\TypeCobol.sln
- name: Build
run: dotnet build --no-restore --configuration ${{ inputs.build-configuration }}
run: dotnet build .\TypeCobol.sln --no-restore --configuration ${{ inputs.build-configuration }}
- name: Test
run: dotnet test --no-build --verbosity normal --configuration ${{ inputs.build-configuration }}
run: dotnet test .\TypeCobol.sln --no-build --verbosity normal --configuration ${{ inputs.build-configuration }}

0 comments on commit be44ff7

Please sign in to comment.