From 058d36edd7f0641e2c40cffcaa015e29963f53a9 Mon Sep 17 00:00:00 2001 From: "kayos@tcp.direct" Date: Fri, 10 Jun 2022 11:06:03 -0700 Subject: [PATCH] CI: Add pre-coverage test check for output purposes --- .github/workflows/go.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b0da388..755c6a3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,4 +1,4 @@ -name: Build Status +name: Vibe Check on: [push, pull_request] @@ -11,7 +11,9 @@ jobs: fetch-depth: 2 - uses: actions/setup-go@v2 with: - go-version: '1.17' + go-version: '1.18' + - name: Water's fine + run: go test -race -v ./... - name: Run coverage run: go test -race -coverprofile=coverage.txt -covermode=atomic ./... - name: Upload coverage to Codecov