Skip to content

Add PCF-SIG v1.0: cryptographic signatures profile #20

Add PCF-SIG v1.0: cryptographic signatures profile

Add PCF-SIG v1.0: cryptographic signatures profile #20

Workflow file for this run

name: CI / .NET
on:
push:
branches: [master]
paths:
- 'implementations/dotnet/pcf/**'
- 'implementations/dotnet/pcf-sig/**'
- 'implementations/dotnet/Directory.Build.props'
- '.github/workflows/dotnet-ci.yml'
pull_request:
branches: [master]
paths:
- 'implementations/dotnet/pcf/**'
- 'implementations/dotnet/pcf-sig/**'
- '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]
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