Skip to content

Merge pull request #2 from seangwright/feat/xperience-29 #13

Merge pull request #2 from seangwright/feat/xperience-29

Merge pull request #2 from seangwright/feat/xperience-29 #13

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@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- 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