From a1c7110c2a447ae7005d9e4d2051eed3faaf86d7 Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Thu, 17 Sep 2020 12:49:59 -0700 Subject: [PATCH] Add example for SxS testing to Readme --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f6116a..66af02f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Matrix Testing: ```yaml jobs: build: - runs-on: ubuntu-16.04 + runs-on: ubuntu-latest strategy: matrix: dotnet: [ '2.2.103', '3.0', '3.1.x' ] @@ -48,6 +48,26 @@ jobs: - run: dotnet build ``` +Side by Side Testing: +```yaml +jobs: + build: + runs-on: ubuntu-latest + name: Dotnet Side by Side testing sample + steps: + - uses: actions/checkout@v2 + - name: Setup dotnet + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '2.2.103' + - name: Setup dotnet + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '3.1.x' + - run: dotnet build + - run: dotnet test +``` + Authentication for nuget feeds: ```yaml steps: