Skip to content

Update the project

Update the project #9

name: Build & Test
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore ./source/Lexicala.NET.sln
- name: Build
run: dotnet build ./source/Lexicala.NET.sln --configuration Release --no-restore
- name: Test
run: dotnet test ./source/Lexicala.NET.sln --no-restore --verbosity normal