From cc352c0691d35ea589f49829ec4fc55aa10799ad Mon Sep 17 00:00:00 2001 From: conneroisu Date: Wed, 31 Jul 2024 11:39:19 -0400 Subject: [PATCH] feat(ci): add Go setup to GitHub Actions workflow --- .github/workflows/dev-ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/dev-ci.yaml b/.github/workflows/dev-ci.yaml index a4ed3bfa..39773640 100644 --- a/.github/workflows/dev-ci.yaml +++ b/.github/workflows/dev-ci.yaml @@ -18,6 +18,11 @@ jobs: steps: - uses: actions/checkout@v3 id: checkout + - name: Install go + id: install-go + uses: actions/setup-go@v3 + with: + go-version: 1.22.5 - name: Install Task id: install-task uses: arduino/setup-task@v1 @@ -27,6 +32,7 @@ jobs: - name: Run all tasks in the workflow id: run-all-tasks run: | + go install github.com/segmentio/golines@latest # Capture the list of all tasks OUTPUT=$(task --list-all)