removed go setup, replaced by go check in tests
This commit is contained in:
parent
2100e905a8
commit
fba04a0c06
1 changed files with 6 additions and 8 deletions
|
@ -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: |
|
||||
|
|
Loading…
Add table
Reference in a new issue