From b5c3bd9eef1c72ab59bff14279b9f769c6d64345 Mon Sep 17 00:00:00 2001 From: Jonas Ha Date: Sun, 21 Dec 2025 19:02:43 -0500 Subject: [PATCH] ci(workflows): add Task installation step to main-build pipeline - Integrated `go-task/setup-task@v1` to streamline task execution. - Ensures consistency in the build dependency setup. --- .github/workflows/main-build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main-build.yaml b/.github/workflows/main-build.yaml index 15f8e3cf..2e98281b 100644 --- a/.github/workflows/main-build.yaml +++ b/.github/workflows/main-build.yaml @@ -41,6 +41,9 @@ jobs: - name: Restore dependencies run: dotnet restore + - name: Install Task + uses: go-task/setup-task@v1 + - name: Set up JDK 17 uses: actions/setup-java@v5 with: