feat(abstractions): XML docs completos e build multi-target #3
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: build · test · format | |
| runs-on: ubuntu-latest | |
| env: | |
| DOTNET_NOLOGO: true | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET (8 + 9) | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Restore | |
| run: dotnet restore NeoReports.sln | |
| - name: Build | |
| run: dotnet build NeoReports.sln --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test NeoReports.sln --configuration Release --no-build --verbosity normal | |
| - name: Format (verify) | |
| run: dotnet format NeoReports.sln --verify-no-changes --no-restore |