Skip to content

Commit

Permalink
Added .NET Core SDK version and unit tests running
Browse files Browse the repository at this point in the history
  • Loading branch information
xperiandri committed Apr 9, 2020
1 parent 80b5692 commit 48f65d1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,21 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.607

- name: Restore NuGet packages
run: dotnet restore

- name: Build with dotnet
run: |
DOTNET_CLI_TELEMETRY_OPTOUT=1
dotnet build --nologo --configuration Release
- name: Run Unit Tests
run: |
cd StringBuilderExtensionsTests
dotnet run -c Release --no-build

0 comments on commit 48f65d1

Please sign in to comment.