Skip to content

gh action for go test (#23) #1

gh action for go test (#23)

gh action for go test (#23) #1

Workflow file for this run

name: Go
on:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Compile protos
run: make all
- name: Build
run: go build -v ./...
- name: Test
uses: robherley/[email protected]