From cc9e88ffe81ea079f1221551fd48e0faf07fb258 Mon Sep 17 00:00:00 2001 From: Josh Close Date: Mon, 22 Jan 2024 14:20:54 -0600 Subject: [PATCH] Workflow. --- .github/workflows/ci.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7c31a8ed3..a47c47fab 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,11 +2,7 @@ name: CI on: [push, pull_request] jobs: build: - strategy: - matrix: - os: [windows-latest, ubuntu-latest, macos-latest] - dotnet-version: ['8.0.x', '4.8.x'] - runs-on: ${{ matrix.os }} + runs-on: windows-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -23,8 +19,6 @@ jobs: echo "FILE_VERSION=${{ steps.gitversion.outputs.version }}.${{ github.run_number }}" >> "$GITHUB_ENV" - name: Setup .NET Core uses: actions/setup-dotnet@v4 - with: - dotnet-version: ${{ matrix.dotnet-version }} - name: Display .NET Version run: dotnet --version - name: Restore