1
0
Fork 0
mirror of synced 2026-06-05 16:28:19 +00:00

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
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>
``` ```