Skip to content

Commit

Permalink
final two sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
aarsilv committed Oct 20, 2023
1 parent 3df91ec commit 15c69d8
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion .github/workflows/test-sdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,39 @@ jobs:
- name: Pull test data
run: make test-data
- name: Run tests
run: make test
run: make test
test-golang-sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout Go SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/golang-sdk'
- uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: 'Set up GCP SDK for downloading test data'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Test
run: make test
test-dotnet-sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout Dot.net SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/gdot-net-server-sdk'
- name: Setup .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: make build
- name: Pull test data
run: make test-data
- name: Test
run: make test

0 comments on commit 15c69d8

Please sign in to comment.