We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfde2f1 commit cb9c048Copy full SHA for cb9c048
.github/workflows/dotnet.yml
@@ -1,7 +1,7 @@
1
# This workflow will build a .NET project
2
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
4
-name: .NET
+name: .NET Ubuntu x64
5
6
on:
7
push:
@@ -21,8 +21,10 @@ jobs:
21
with:
22
dotnet-version: 8.0.x
23
- name: Restore dependencies
24
- run: dotnet restore
+ run: dotnet restore ./src/StringComparison/StringComparison.csproj
25
+
26
- name: Build
- run: dotnet build --no-restore
27
+ run: dotnet build ./src/StringComparison/StringComparison.csproj --no-restore
28
29
- name: Test
- run: dotnet test --no-build --verbosity normal
30
+ run: dotnet test ./src/StringComparison.Test/StringComparison.Test.csproj --no-build --verbosity normal
0 commit comments