Restructure implementations into per-library subfolders with shared multi-package infrastructure #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI / .NET | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'implementations/dotnet/pcf/**' | |
| - 'implementations/dotnet/Directory.Build.props' | |
| - '.github/workflows/dotnet-ci.yml' | |
| pull_request: | |
| branches: [master] | |
| paths: | |
| - 'implementations/dotnet/pcf/**' | |
| - 'implementations/dotnet/Directory.Build.props' | |
| - '.github/workflows/dotnet-ci.yml' | |
| defaults: | |
| run: | |
| working-directory: implementations/dotnet/pcf | |
| jobs: | |
| test: | |
| name: build & test (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| 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 |