Skip to content

Commit cb9c048

Browse files
authored
Update dotnet.yml
1 parent bfde2f1 commit cb9c048

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will build a .NET project
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
33

4-
name: .NET
4+
name: .NET Ubuntu x64
55

66
on:
77
push:
@@ -21,8 +21,10 @@ jobs:
2121
with:
2222
dotnet-version: 8.0.x
2323
- name: Restore dependencies
24-
run: dotnet restore
24+
run: dotnet restore ./src/StringComparison/StringComparison.csproj
25+
2526
- name: Build
26-
run: dotnet build --no-restore
27+
run: dotnet build ./src/StringComparison/StringComparison.csproj --no-restore
28+
2729
- name: Test
28-
run: dotnet test --no-build --verbosity normal
30+
run: dotnet test ./src/StringComparison.Test/StringComparison.Test.csproj --no-build --verbosity normal

0 commit comments

Comments
 (0)