Skip to content

V15/xml comments

V15/xml comments #523

Workflow file for this run

name: PR Project Build and Test
on:
pull_request:
branches: [v15/main]
env:
config: Release
out_folder: ./build-out/
jobs:
build-project:
runs-on: windows-latest
env:
solution_name: ./uSync.sln
test_project: ./uSync.Tests/uSync.tests.csproj
schema_gen_project: ./uSync.SchemaGenerator/uSync.SchemaGenerator.csproj
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
cache: true
cache-dependency-path: "**/packages.lock.json"
- name: restore
run: dotnet restore ${{ env.solution_name}} --locked-mode
- name: build
run: dotnet build ${{ env.solution_name }} -c ${{ env.config }} -p:ContinuousIntegrationBuild=true
- name: test
run: dotnet test ${{ env.solution_name }}
- name: Generate AppSettings Schema
run: dotnet run -c ${{env.Config}} --project ${{ env.schema_gen_project}}