From 762e5cf299b860b9f3fc63d8e86118c63f68b397 Mon Sep 17 00:00:00 2001 From: Will Norris <will@willnorris.com> Date: Thu, 18 Feb 2021 08:51:19 -0800 Subject: [PATCH] actions: print go version being used --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 11c0ab7..8b54b24 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,10 +26,12 @@ jobs: runs-on: ${{ matrix.platform }} steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v1 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v2 + - run: go version - name: Cache go modules uses: actions/cache@v2