All checks were successful
Go CI/CD / go-ci (push) Successful in 36s
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.
30 lines
606 B
YAML
30 lines
606 B
YAML
name: Go CI/CD
|
|
run-name: ${{ github.actor }} is running CI/CD basic
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
- release/**
|
|
- develop
|
|
pull_request:
|
|
branches-ignore:
|
|
- 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: 'basic'
|
|
go-version: '1.24'
|
|
build-type: 'library'
|
|
publish-docker: 'false' |