do_simple/old/build.yaml
vitaliy e29e3eb065
Some checks failed
Build and Push to GHCR / build (push) Has been cancelled
k8s: helm manifest
2025-11-13 16:58:59 +03:00

21 lines
378 B
YAML

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...