Skip to content

Merge commit '4c6f1fe9a8d9e99f38ff8e0c0ac321ebf21beb8b' #2182

Merge commit '4c6f1fe9a8d9e99f38ff8e0c0ac321ebf21beb8b'

Merge commit '4c6f1fe9a8d9e99f38ff8e0c0ac321ebf21beb8b' #2182

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