From 37547d1bd280f3f1c1ef7edb44f2a206660fbfb4 Mon Sep 17 00:00:00 2001 From: Simon Schmid Date: Sat, 29 Jul 2023 00:15:04 +0200 Subject: [PATCH] Remove "Setup dotnet" step --- .github/workflows/build.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d9cab2aa4..bbe17c080 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,17 +11,11 @@ jobs: with: submodules: recursive - - name: "Setup dotnet" - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 6.0.x - - name: "Build" run: | - dotnet build \ + dotnet build -c Release \ -p:UnityEditor=/home/runner/work/Entitas/Entitas/unity/Unity-2021.3.0f1/UnityEditor.dll \ - -p:UnityEngine=/home/runner/work/Entitas/Entitas/unity/Unity-2021.3.0f1/UnityEngine.dll \ - -c Release + -p:UnityEngine=/home/runner/work/Entitas/Entitas/unity/Unity-2021.3.0f1/UnityEngine.dll - name: "Test" run: dotnet test -c Release --no-build --collect:"XPlat Code Coverage"