From f0723c510152fa0bc3f5e0e46f45edb812894141 Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Mon, 27 Sep 2021 06:47:03 -0600 Subject: [PATCH] Delete old tests.yml --- .github/workflows/tests.yml | 38 ------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index a248e23f..00000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: CI Tests - -on: - push: - branches: [ master ] - pull_request: - paths: - - 'Wabbajack**' - - '.github/workflows/**' - branches: [ master ] - -jobs: - build: - - runs-on: self-hosted - - steps: - - uses: actions/checkout@v2 - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 5.0.101 - - name: Restore dependencies - run: dotnet restore - - name: Build - run: dotnet build --no-restore --configuration Release /p:Platform=x64 - - name: Test Wabbajack.Common.Test - run: dotnet test --verbosity normal --configuration Release /p:Platform=x64 Wabbajack.Common.Test - - name: Test Compression.BSA.Test - run: dotnet test --verbosity normal --configuration Release /p:Platform=x64 Compression.BSA.Test - - name: Test Wabbajack.VirtualFileSystem.Test - run: dotnet test --verbosity normal --configuration Release /p:Platform=x64 Wabbajack.VirtualFileSystem.Test - - name: Test Wabbajack.Test - run: dotnet test --verbosity normal --configuration Release /p:Platform=x64 Wabbajack.Test - - name: Test Wabbajack.App.Test - run: dotnet test --verbosity normal --configuration Release /p:Platform=x64 Wabbajack.App.Test - - name: Test Wabbajack.Server.Test - run: dotnet test --verbosity normal --configuration Release /p:Platform=x64 Wabbajack.Server.Test