ci: add Gitea Actions workflows and placeholder tests
Some checks failed
CI / ci (push) Failing after 47s

This commit is contained in:
Cosmo
2026-03-01 00:05:08 +00:00
parent 2a50e50771
commit b91e67ac1d
6 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
name: Deploy Production
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
run: CGO_ENABLED=0 go build -o main ./cmd/api
- name: Deploy
run: echo "Production deploy via docker"