Skip to content

Xperience by Kentico Implementation #20

Xperience by Kentico Implementation

Xperience by Kentico Implementation #20

Workflow file for this run

name: 'CI: Build and Test'
on:
push:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'
- '**.props'
- '**.targets'
- '**.sln'
pull_request:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'
- '**.props'
- '**.targets'
- '**.sln'
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Environment Variables
uses: ./.github/actions/set-env
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Install dependencies
run: dotnet restore
- name: Build Solution
run: dotnet build --configuration Release --no-restore
- name: Test Solution
run: dotnet test --configuration Release --no-build --no-restore