Switch to Polyfill package and polyfill additional things manually #174
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| dotnet-quality: 'ga' | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Check code formatting | |
| run: dotnet format --no-restore --verify-no-changes | |
| - name: Build | |
| run: dotnet build --no-restore | |
| - name: Run tests | |
| run: dotnet test --output Detailed --no-build --no-progress --max-parallel-test-modules 1 | |
| working-directory: test/TinyIpc.Tests |