From 52a38b56b1024a7b1629b27f9d45488eae12c1e8 Mon Sep 17 00:00:00 2001 From: Pim Brouwers Date: Tue, 12 Dec 2023 05:26:14 -0500 Subject: [PATCH] net8.0 build --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d3b3c4f..7d80aa1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,29 +1,29 @@ name: build -on: - push: +on: + push: branches: [master] - pull_request: - + pull_request: + jobs: build: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ['6.0.x'] + dotnet-version: ['8.0.x'] steps: - uses: actions/checkout@v2 - + - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} - uses: actions/setup-dotnet@v1.7.2 + uses: actions/setup-dotnet@v3 with: dotnet-version: ${{ matrix.dotnet-version }} - + - name: Install dependencies run: dotnet restore - + - name: Build run: dotnet build -c Release --no-restore - + - name: Test run: dotnet test -c Release --no-build \ No newline at end of file