From b6830bdace62c0cc7cd322a35c2b73e39f466527 Mon Sep 17 00:00:00 2001 From: Alexander Sergeevich <7339834@gmail.com> Date: Sun, 8 Feb 2026 00:27:38 +0300 Subject: [PATCH] Add Go install step for CI tests --- .gitea/workflows/deploy-my-vpn.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/deploy-my-vpn.yml b/.gitea/workflows/deploy-my-vpn.yml index c8d5956..cf009d5 100644 --- a/.gitea/workflows/deploy-my-vpn.yml +++ b/.gitea/workflows/deploy-my-vpn.yml @@ -11,6 +11,10 @@ jobs: # BLOCK 1: checkout + tests - name: Checkout uses: actions/checkout@v4 + - name: Install Go + run: | + apt-get update -y + apt-get install -y golang - name: Unit tests run: | go test ./...