Skip to content

Merge commit '4c50b362f65c0f8fe3992d14b508b377632fb1a6' #2192

Merge commit '4c50b362f65c0f8fe3992d14b508b377632fb1a6'

Merge commit '4c50b362f65c0f8fe3992d14b508b377632fb1a6' #2192

name: .NET Build
on: push
jobs:
BuildInWindows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
- name: Build and Test
run: |
dotnet build --configuration release LightTextEditorPlus
dotnet test --configuration release LightTextEditorPlus --no-build
BuildInLinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
- name: Build and Test
run: |
dotnet build --configuration release LightTextEditorPlus/LightTextEditorPlus.Core/LightTextEditorPlus.Core.csproj
dotnet test --configuration release LightTextEditorPlus/Tests/LightTextEditorPlus.Core.Tests/LightTextEditorPlus.Core.Tests.csproj