2
0
Files
actions-proto-go/.gitea/workflows/ci.yml
GitCaddy Dev 92d809a4d0
Some checks failed
CI / build (push) Has been cancelled
Release / release (push) Has been cancelled
fix: Use linux-latest instead of ubuntu-latest
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-14 09:43:38 +00:00

29 lines
470 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: linux-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: Build
run: go build ./...
env:
GOPRIVATE: git.marketally.com
- name: Test
run: go test ./...
env:
GOPRIVATE: git.marketally.com