Skip to content

Merge commit '8d59a96e0d4e390ae78946ff556a759901961856' into dev #735

Merge commit '8d59a96e0d4e390ae78946ff556a759901961856' into dev

Merge commit '8d59a96e0d4e390ae78946ff556a759901961856' into dev #735

name: .NET Build
on: push
jobs:
BuildInWindows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- 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@v1
- 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