Skip to content

KX-11806 - Create a GH test pipeline #5

KX-11806 - Create a GH test pipeline

KX-11806 - Create a GH test pipeline #5

Workflow file for this run

name: "CI: Build and Test"
on:
push:
branches: [main]
paths:
- "**.cs"
- "**.tsx"
- "**.js"
- "**.csproj"
- "**.props"
- "**.targets"
- "**.sln"
- "**/Client/**/*.json"
- "**/ci.yml"
pull_request:
branches: [main]
paths:
- "**.cs"
- "**.tsx"
- "**.js"
- "**.csproj"
- "**.props"
- "**.targets"
- "**.sln"
- "**/Client/**/*.json"
- "**/ci.yml"
jobs:
build-and-test:
name: "Build and test"
runs-on: windows-latest
defaults:
run:
shell: pwsh
# env:
# DOTNET_CLI_TELEMETRY_OPTOUT: 1
# DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
# DOTNET_NOLOGO: 1
# SIGN_FILE: false
# PROJECT_NAME: Kentico.Xperience.OpenAI.Azure
steps:
- uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
- name: Restore Packages
run: nuget restore KenticoXperienceOpenAIAzure.sln
- name: Build Solution
run: |
msbuild.exe /p:platform="Any CPU" /p:configuration="Release"
- name: Test Solution
run: dotnet test --configuration Release --no-build --no-restore