docs: update README with vibrant formatting and add marketplace manifest #2
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: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore src/CodingWithCalvin.Debugalizers.slnx | |
| - name: Build | |
| run: dotnet build src/CodingWithCalvin.Debugalizers.slnx --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test src/CodingWithCalvin.Debugalizers.slnx --configuration Release --no-build --verbosity normal | |
| - name: Upload VSIX artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vsix | |
| path: src/CodingWithCalvin.Debugalizers/bin/Release/**/*.vsix | |
| if-no-files-found: warn |