removed go setup, replaced by go check in tests
Some checks failed
/ test-on-windows (push) Failing after 4s
/ test-on-alpine (push) Successful in 1m12s

This commit is contained in:
partisan 2024-12-21 13:07:19 +01:00
parent 2100e905a8
commit fba04a0c06

View file

@ -7,10 +7,9 @@ jobs:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Set up Go - name: Verify Go Installation
uses: actions/setup-go@v4 run: |
with: go version || (echo "Go is not installed!" && exit 1)
go-version: 1.20
- name: Build Go Application - name: Build Go Application
run: | run: |
@ -27,10 +26,9 @@ jobs:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Go - name: Verify Go Installation
run: | run: |
apk add --no-cache go go version || (echo "Go is not installed!" && exit 1)
go version
- name: Build Go Application - name: Build Go Application
run: | run: |