From 9b03fa9ec7c0fb132a62159d5814b267efc2b149 Mon Sep 17 00:00:00 2001 From: Kaleb Elwert Date: Tue, 19 Jan 2021 09:26:44 -0800 Subject: [PATCH] Update to stable versions of GitHub Actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0d953d..2a1cb78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,17 +12,20 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v2-beta + uses: actions/setup-go@v2 with: go-version: '^1.7' - name: Check out code - uses: actions/checkout@9a3a9ade + uses: actions/checkout@v2 with: submodules: true - name: Clean up extra files run: rm ./testcases/*.go + + - name: Download deps + run: go mod download - name: Run golangci-lint uses: actions-contrib/golangci-lint@v1 @@ -31,9 +34,6 @@ jobs: with: golangci_lint_version: 'v1.23.6' - - name: Download deps - run: go mod download - - name: Run tests run: go test -race -v ./...