diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0506488..357261e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,15 +40,12 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Go + - name: Setup Go uses: actions/setup-go@v5 with: - go-version: "^1.17" + go-version: 1.21.1 - - name: Install deps & build + - name: Install dependencies and run tests run: | go mod download - go build -v ./... - - - name: Test with the Go CLI - run: go test + go test -v ./... \ No newline at end of file