Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"cliVersion": "0.112.1",
"generatorName": "fernapi/fern-go-sdk",
"generatorVersion": "1.14.1",
"generatorConfig": {
"packageName": "merge"
}
}
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,19 @@ jobs:
- name: Set up go
uses: actions/setup-go@v4

- name: Start WireMock
run: docker compose -f wiremock/docker-compose.test.yml up -d

- name: Wait for WireMock
run: |
timeout 30 bash -c 'until curl -f http://localhost:8080/__admin/health; do sleep 1; done'

- name: Test
run: go test ./...
env:
MERGE_API_KEY_FILESTORAGE: ${{ secrets.MERGE_API_KEY_FILESTORAGE }}
MERGE_ACCOUNT_TOKEN_FILESTORAGE: ${{ secrets.MERGE_ACCOUNT_TOKEN_FILESTORAGE }}

- name: Stop WireMock
if: always()
run: docker compose -f wiremock/docker-compose.test.yml down
Loading