From ac31b190012eac6c3c954c9ffff55677aa72f02f Mon Sep 17 00:00:00 2001 From: oussama Date: Tue, 14 May 2024 08:23:18 +0100 Subject: [PATCH] fix typo --- .github/workflows/go.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 543d207..12264b7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,13 +11,12 @@ jobs: name: Build & Test runs-on: ubuntu-latest steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v4 - name: Set up Go 1.x uses: actions/setup-go@v5 with: go-version-file: 'go.mod' - - name: Check out code into the Go module directory - uses: actions/checkout@v4 - - name: Get dependencies run: go mod download - name: Test