From 4e6ef6badd22b8fb2e19b00aee949665a0261afe Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Mon, 19 May 2025 13:54:10 +0200 Subject: [PATCH] GH: add setup go action --- .github/workflows/pytest.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1607511..01b381b 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,7 +17,9 @@ jobs: uses: actions/setup-python@v4 with: python-version: "${{ matrix.python-version }}" - + - uses: actions/setup-go@v5 + with: + go-version: '>=1.17.0' # Add Go bin directory to PATH for this workflow # GITHUB_PATH is a special file that GitHub Actions uses to modify PATH # Writing to this file adds the directory to the PATH for subsequent steps