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

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