Deepen Apizr registration generator with adapter isolation and pipeline tests #2236
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: Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths-ignore: | |
| - '**/*' | |
| - '!.github/workflows/build.yml' | |
| - '!src/**/*.csproj' | |
| - '!src/**/*.cs' | |
| branches: | |
| - 'main' | |
| pull_request: | |
| paths-ignore: | |
| - '**/*' | |
| - '!.github/workflows/build.yml' | |
| - '!src/**/*.csproj' | |
| - '!src/**/*.cs' | |
| branches: | |
| - '*' | |
| env: | |
| VERSION: 2.0.1.${{ github.run_number }} | |
| jobs: | |
| build: | |
| name: 👌 Verify build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛒 Checkout repository | |
| uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| 10.0.x | |
| - name: 🛠️ Prepare | |
| continue-on-error: true | |
| run: | | |
| rm -rf src/Refitter.SourceGenerator.Tests/AdditionalFiles/Generated | |
| dotnet restore src/Refitter.SourceGenerator.Tests/Refitter.SourceGenerator.Tests.csproj | |
| dotnet msbuild src/Refitter.SourceGenerator.Tests/Refitter.SourceGenerator.Tests.csproj | |
| - name: 🛠️ Build | |
| run: dotnet build -c Release src/Refitter.slnx -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}" -p:Version="${{ env.VERSION }}" | |
| - name: 🧪 Test | |
| run: dotnet test --solution src/Refitter.slnx -c Release | |
| - name: 🗳️ Upload | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: Packages | |
| path: | | |
| **/*.nupkg | |
| README.md | |
| - name: 🛠️ Build Docs | |
| run: | | |
| dotnet tool update -g docfx | |
| docfx docs/docfx_project/docfx.json |