From 9283a8cf7a0b3ea259fff5036aeff4c674f29f88 Mon Sep 17 00:00:00 2001 From: Adam Ralph Date: Mon, 11 Apr 2022 17:50:34 +0200 Subject: [PATCH] switch side by side testing example to single setup step (#283) --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0caf702..5891a7b 100644 --- a/README.md +++ b/README.md @@ -81,11 +81,9 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v2 with: - dotnet-version: '2.1.x' - - name: Setup dotnet - uses: actions/setup-dotnet@v2 - with: - dotnet-version: '3.1.x' + dotnet-version: | + 2.1.x + 3.1.x - run: dotnet build - run: dotnet test ```