Files
antrean-anjungan/.github/workflows/go-test.yml
2025-08-12 21:51:41 +07:00

19 lines
345 B
YAML

name: Go-test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test ./...