Add Go install step for CI tests
All checks were successful
Deploy to my-vpn / deploy (push) Successful in 2m19s

This commit is contained in:
2026-02-08 00:27:38 +03:00
parent a6b677b08b
commit b6830bdace

View File

@@ -11,6 +11,10 @@ jobs:
# BLOCK 1: checkout + tests # BLOCK 1: checkout + tests
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Go
run: |
apt-get update -y
apt-get install -y golang
- name: Unit tests - name: Unit tests
run: | run: |
go test ./... go test ./...