Skip to content

Commit 9a1ae98

Browse files
committed
Added .NET Core SDK version and unit tests running
1 parent 80b5692 commit 9a1ae98

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,18 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v2
16+
1617
- name: Setup .NET Core
1718
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: 2.1.607
21+
1822
- name: Build with dotnet
1923
run: |
2024
DOTNET_CLI_TELEMETRY_OPTOUT=1
2125
dotnet build --nologo --configuration Release
26+
27+
- name: Run Unit Tests
28+
run: |
29+
cd StringBuilderExtensionsTests
30+
dotnet run -c Release --no-build

0 commit comments

Comments
 (0)