From b9c90c07eba6396b2a40176a21c81e8c72dcc6bf Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Tue, 7 Jan 2025 14:06:23 -0800 Subject: [PATCH] redundant names are redundant The actions names here are self-explanatory, no need to name them. Plus the "checkout" name was slightly incorrect, as it checks out the full repo, and has nothing to do with the go modules directory. --- .github/workflows/go.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b366b73e..c62af8dc 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,11 +13,9 @@ jobs: name: Build And Test Go code runs-on: ubuntu-latest steps: - - name: Check out code into the Go module directory - uses: actions/checkout@v4 - - - name: Setup Go - uses: actions/setup-go@v5 + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 with: go-version-file: go.mod