We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e882302 commit 43cf8c3Copy full SHA for 43cf8c3
.github/workflows/test.yml
@@ -29,3 +29,19 @@ jobs:
29
run: ./gradlew build
30
- name: Gradle Run Tests
31
run: ./gradlew kotlin:test
32
+ golang:
33
+ name: Test (Golang)
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - name: Checkout project sources
37
+ uses: actions/checkout@v4
38
+ - uses: actions/checkout@v4
39
+ with:
40
+ repository: 'xmtp/xmtpd'
41
+ path: xmtpd
42
+ - uses: actions/setup-go@v5
43
+ - name: Execute xmtpd protos builder
44
+ run: |
45
+ cd xmtpd
46
+ go tool -modfile=tools/go.mod buf generate ../proto/
47
+ go build ./...
0 commit comments