Skip to content

51 fix low contrast details / end nodes labels in light themes #9

51 fix low contrast details / end nodes labels in light themes

51 fix low contrast details / end nodes labels in light themes #9

Workflow file for this run

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