All checks were successful
Go CI/CD / go-ci (push) Successful in 1m47s
Introduce 'enforcer' package with `Sentinel` for rich error context and `ApplicationError` for custom error codes. Include tests, documentation updates, CI workflows, and foundational files like `GO.mod` for project setup.
25 lines
522 B
YAML
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' |