From 8ba3a3ae2ac0985b99b02745f485f6f4590c011c Mon Sep 17 00:00:00 2001 From: efixler Date: Fri, 16 Feb 2024 12:36:36 -0500 Subject: [PATCH] Change step order to take advantage of cache --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f3ec746..8a70e6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,11 +14,11 @@ jobs: os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: + - name: Checkout code + uses: actions/checkout@v4 - name: Install Go uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - name: Checkout code - uses: actions/checkout@v4 - name: test run: go test -v ./...