51 fix low contrast details / end nodes labels in light themes #9
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: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: ['**'] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore | |
| run: dotnet restore ExpressionTreeExplorer.sln | |
| - name: Build | |
| run: dotnet build ExpressionTreeExplorer.sln -c Release --no-restore | |
| - name: Test | |
| run: dotnet test ExpressionTreeExplorer.sln -c Release --no-build | |
| - name: Upload VSIX artifact | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: vsix | |
| path: ExpressionTreeExplorer.Vsix/bin/Release/net8.0-windows/*.vsix | |
| if-no-files-found: error |