From fabc64ed498dedb18a6f0897587eba49daca3760 Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 27 Jun 2023 10:20:44 +0300 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bb981ff..41cdfd3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,10 +3,10 @@ name: Tests on: push: branches: - - master + - main pull_request: branches: - - master + - main jobs: test: @@ -18,12 +18,12 @@ jobs: steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test run: go test -covermode atomic -coverprofile=profile.cov ./...