Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup-dotnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ runs:

- name: Restore dependencies
shell: bash
run: dotnet restore
run: dotnet restore EssentialCSharp.sln

- name: Build
if: ${{ inputs.build == 'true' }}
shell: bash
run: dotnet build --no-restore
run: dotnet build EssentialCSharp.sln --no-restore
4 changes: 2 additions & 2 deletions .github/workflows/LocalesTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
echo "Printing date"
date
echo Restore dependencies
dotnet restore
dotnet restore EssentialCSharp.sln
echo Build
dotnet build --no-restore
dotnet build EssentialCSharp.sln --no-restore
echo Test
dotnet test --no-build --no-restore --verbosity normal
Loading