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"