Skip to content

Build: include Samples.UITest path in trigger #368

Build: include Samples.UITest path in trigger

Build: include Samples.UITest path in trigger #368

Workflow file for this run

name: System.Waf.CI
on:
push:
paths:
- 'src/*'
- 'src/System.Waf/**'
- 'src/Samples.UITest/**'
- '.github/workflows/**'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: NuGet clear
run: dotnet nuget locals all --clear
- name: Build
run: dotnet build ./src/System.Waf/System.Waf.sln -c Release -p:ContinuousIntegrationBuild=true
- name: Test
run: dotnet test ./src/System.Waf/System.Waf.sln -c Release --no-build
- name: Upload NuGet packages
uses: actions/upload-artifact@v4
with:
name: packages
if-no-files-found: error
path: |
src/System.Waf/System.Waf/**/*.nupkg
src/System.Waf/System.Waf/**/*.snupkg
- name: UI Test
run: dotnet test ./src/Samples.UITest/Samples.UITest.sln --logger "console;verbosity=detailed"