Skip to content

KX-11806 - Create a GH test pipeline #3

KX-11806 - Create a GH test pipeline

KX-11806 - Create a GH test pipeline #3

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: ubuntu-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: "Install dependencies"
run: dotnet restore --locked-mode
- name: "Build Solution"
run: dotnet build --configuration Release --no-restore
- name: "Test Solution"
run: dotnet test --configuration Release --no-build --no-restore