From 00fc897853b278cb21baf1a4ae9ebd2d80eb4f1e Mon Sep 17 00:00:00 2001 From: Riandy Rahman Nugraha Date: Thu, 20 Jul 2023 13:18:34 +0700 Subject: [PATCH] chore: setup go since the self-hosted runner doesn't have go preinstalled; --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12114bbb..f66293c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,11 @@ jobs: - name: Run Automated Tests run: make test + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: 1.20 + - name: Send Coverage Report to Coveralls uses: shogo82148/actions-goveralls@v1 with: