From 1018def99530cd99e4ced3326ba95d81661bba4f Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Wed, 29 Jan 2020 19:53:13 +0000 Subject: [PATCH] Update dotnetcore.yml Learning about continuous integration. - Testing build using multiple versions of .NET Core. --- .github/workflows/dotnetcore.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 816c17a..3cd94a7 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -7,11 +7,16 @@ jobs: runs-on: ubuntu-latest + strategy: + matrix: + dotnet: [ '2.1', '3.1' ] + name: Dotnet ${{ matrix.dotnet }} build + steps: - - uses: actions/checkout@v1 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 2.2.108 - - name: Build with dotnet - run: dotnet build --configuration Release + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: ${{ matrix.dotnet }} + - name: Build with dotnet + run: dotnet build --configuration Release