Skip to content

Merge commit '02a9f66c83c0a21022e0155f7f4ae241e68b245e' #2183

Merge commit '02a9f66c83c0a21022e0155f7f4ae241e68b245e'

Merge commit '02a9f66c83c0a21022e0155f7f4ae241e68b245e' #2183

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