From c5f2b221aefa43c9063c78228984224475da2b73 Mon Sep 17 00:00:00 2001 From: Nikolay Mitrofanov Date: Sat, 3 Jan 2026 23:00:40 +0300 Subject: [PATCH] add setup go step to run_tests job Signed-off-by: Nikolay Mitrofanov --- .github/workflows/check_pull_request.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_pull_request.yml b/.github/workflows/check_pull_request.yml index 3078da9..0f6ce71 100644 --- a/.github/workflows/check_pull_request.yml +++ b/.github/workflows/check_pull_request.yml @@ -32,7 +32,11 @@ jobs: with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - + - &setup_go + name: Setup Go + uses: actions/setup-go@v6.1.0 + with: + go-version: '1.25.x' - name: Run tests run: make test @@ -42,10 +46,7 @@ jobs: steps: - *checkout_step - - name: Setup Go - uses: actions/setup-go@v6.1.0 - with: - go-version: '1.25.x' + - *setup_go - name: Run validation run: make validation/license