Daily Test Coverage Improver: Comprehensive tests for Pluralizer module #304
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 and Test PR | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup .NET Core 8 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 8.0.400 | |
| - name: Restore .NET local tools | |
| run: dotnet tool restore | |
| - name: Restore packages | |
| run: dotnet paket restore | |
| - name: Build and test (Release) | |
| env: | |
| FAKE_DETAILED_ERRORS: true | |
| run: dotnet run --project build/build.fsproj -- -t All | |
| - name: Build (Debug) | |
| run: dotnet build -c Debug -v n | |
| build-ubuntu: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup .NET Core 8 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 8.0.400 | |
| - name: Restore .NET local tools | |
| run: dotnet tool restore | |
| - name: Restore packages | |
| run: dotnet paket restore | |
| - name: Build and test | |
| run: dotnet run --project build/build.fsproj -- -t RunTests | |
| - name: Build (Debug) | |
| run: dotnet build -c Debug -v n |