Skip to content

PCF-DCP: full TypeScript / .NET / PHP ports + cross-port conformance #22

PCF-DCP: full TypeScript / .NET / PHP ports + cross-port conformance

PCF-DCP: full TypeScript / .NET / PHP ports + cross-port conformance #22

Workflow file for this run

name: CI / .NET
on:
push:
branches: [master]
paths:
- 'implementations/dotnet/pcf/**'
- 'implementations/dotnet/pcf-sig/**'
- 'implementations/dotnet/pcf-dcp/**'
- 'implementations/dotnet/Directory.Build.props'
- '.github/workflows/dotnet-ci.yml'
pull_request:
branches: [master]
paths:
- 'implementations/dotnet/pcf/**'
- 'implementations/dotnet/pcf-sig/**'
- 'implementations/dotnet/pcf-dcp/**'
- 'implementations/dotnet/Directory.Build.props'
- '.github/workflows/dotnet-ci.yml'
jobs:
test:
name: build & test ${{ matrix.package }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
package: [pcf, pcf-sig, pcf-dcp]
defaults:
run:
working-directory: implementations/dotnet/${{ matrix.package }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- run: dotnet restore
- run: dotnet build -c Release --no-restore
- run: dotnet test -c Release --no-build --verbosity normal