From 0a93c7ad1c7de7f1cbda7d7ab749c47cfc0e7746 Mon Sep 17 00:00:00 2001 From: JD <156010594+5u6r054@users.noreply.github.com> Date: Tue, 6 Aug 2024 21:21:38 -0700 Subject: [PATCH] give the workflow for running Go tests a more descriptive name --- .github/workflows/tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 674922be..5d9ea5ca 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,4 +1,4 @@ -name: Go +name: Run Go Tests on: push: @@ -24,4 +24,4 @@ jobs: run: go mod tidy - name: Run tests - run: go test ./... \ No newline at end of file + run: go test ./...