Skip to content

Update Docker image tag to version ute1732432112 across configuration… #18

Update Docker image tag to version ute1732432112 across configuration…

Update Docker image tag to version ute1732432112 across configuration… #18

Workflow file for this run

name: Go Testing
on:
push:
branches: ["develop"]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set Up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- name: Go Build
run: |
cd api-v1
go mod download
go build api.go
- name: Go Test
run: |
cd api-v1
go test -v ./...