Skip to content

Merge commit '86bf704b13ae32a30e0e8b0fa82b7d45577c7974' #1591

Merge commit '86bf704b13ae32a30e0e8b0fa82b7d45577c7974'

Merge commit '86bf704b13ae32a30e0e8b0fa82b7d45577c7974' #1591

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