Skip to content

Merge branch 'feature/mv_echo' into develop #15

Merge branch 'feature/mv_echo' into develop

Merge branch 'feature/mv_echo' into develop #15

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 ./...