Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @xh3b4sd
16 changes: 16 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Do not edit. This file was generated via the "workflow" command line tool.
# More information about the tool can be found at github.com/xh3b4sd/workflow.
#
# workflow create dependabot -r @xh3b4sd
#

version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 10
schedule:
interval: "weekly"
time: "04:00"
44 changes: 44 additions & 0 deletions .github/workflows/go-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#
# Do not edit. This file was generated via the "workflow" command line tool.
# More information about the tool can be found at github.com/xh3b4sd/workflow.
#
# workflow create golang
#

name: "Go Build"

on: "push"

permissions:
contents: read

jobs:
go-build:
runs-on: "ubuntu-latest"
steps:
- name: "Setup Git Project"
uses: "actions/checkout@v5"

- name: "Setup Go Env"
uses: "actions/setup-go@v6"
with:
cache: true
go-version: "1.25.1"

- name: "Check Go Dependencies"
run: |
go mod tidy
git diff --exit-code

- name: "Check Go Linters"
uses: "golangci/golangci-lint-action@v8"
with:
version: "latest"

- name: "Check Go Formatting"
run: |
test -z $(gofmt -l -s .)

- name: "Check Go Tests"
run: |
go test ./... -race
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# pulsargocode
golang code for the pulsar rpc

All code here is automatically generated by the Protocol Buffer Compiler using
the service and message definitions in https://github.com/0xSplits/pulsarprotos.

```
go get github.com/0xSplits/pulsargocode@v0.1.0
```
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/0xSplits/pulsargocode

go 1.25
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package pulsargocode
Loading