From 9c14b6fcba2a7267aeb4ac9cb579cca15ad98a4b Mon Sep 17 00:00:00 2001 From: tintheanh Date: Thu, 21 Sep 2023 11:23:49 -0700 Subject: [PATCH] test --- .github/workflows/main.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4357d03..f62b0ec 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,20 +4,12 @@ on: [push] jobs: build: - runs-on: ubuntu-latest - strategy: - matrix: - dotnet-version: [ '3.1.x' ] - + runs-on: windows-latest steps: - uses: actions/checkout@v4 - - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} - uses: actions/setup-dotnet@v3 - with: - dotnet-version: ${{ matrix.dotnet-version }} - name: Install dependencies run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - name: Test - run: dotnet test + run: dotnet test -no-restore