gravity-wells/.gitea/workflows/ci-protected-push.yml
Rene Nochebuena bc3c5aa846
All checks were successful
Go CI/CD / go-ci (push) Successful in 36s
Add CQRS library 'Singularity' with core handlers and tests
Introduces the 'Singularity' implementation, a CQRS Bus that supports commands, queries, and events, along with middleware extensibility. Includes comprehensive tests, modular files for commands, queries, and events, as well as CI/CD workflows.
2025-04-26 22:25:23 -06:00

25 lines
522 B
YAML

name: Go CI/CD
run-name: ${{ github.actor }} is running CI/CD protected
on:
push:
branches:
- main
- release/**
- develop
jobs:
go-ci:
runs-on: ubuntu-latest
env:
GOPROXY: https://proxy.golang.org,direct
GOPRIVATE: gitstormr.dev
GONOSUMDB: gitstormr.dev
steps:
- uses: https://gitstormr.dev/actions/go-ci@v1.1.1
with:
workflow-type: 'protected'
go-version: '1.24'
build-type: 'library'
publish-docker: 'false'