feat: SSE Client #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Examples | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test_examples: | |
name: Test Examples | |
runs-on: ubuntu-latest | |
env: | |
DEVCYCLE_SERVER_SDK_KEY: ${{ secrets.DEVCYCLE_SERVER_SDK_KEY }} | |
DEVCYCLE_VARIABLE_KEY: test-boolean-variable | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Run local bucketing example | |
run: | | |
go run ./example/local | |
- name: Run cloud bucketing example | |
run: | | |
go run ./example/cloud | |
- name: Run openfeature example | |
run: | | |
go run ./example/openfeature |