Skip to content

Version Bumping

Version Bumping #146

name: Test Run Examples
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
# Using the DevCycle Internal Default key
DEVCYCLE_SERVER_SDK_KEY: "${{ secrets.EXAMPLE_DEVCYCLE_SERVER_SDK_KEY }}"
jobs:
run-example:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
- name: Build
run: |
dotnet build
- name: Run Local Example
run: |
dotnet run --configuration Release --project .\DevCycle.SDK.Server.Local.Example\DevCycle.SDK.Server.Local.Example.csproj
- name: Run Cloud Example
run: |
dotnet run --configuration Release --project .\DevCycle.SDK.Server.Cloud.Example\DevCycle.SDK.Server.Cloud.Example.csproj