switch side by side testing example to single setup step (#283)

This commit is contained in:
Adam Ralph 2022-04-11 17:50:34 +02:00 committed by GitHub
parent 53d632b5c0
commit 9283a8cf7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,11 +81,9 @@ jobs:
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@v2 uses: actions/setup-dotnet@v2
with: with:
dotnet-version: '2.1.x' dotnet-version: |
- name: Setup dotnet 2.1.x
uses: actions/setup-dotnet@v2 3.1.x
with:
dotnet-version: '3.1.x'
- run: dotnet build <my project> - run: dotnet build <my project>
- run: dotnet test <my project> - run: dotnet test <my project>
``` ```