Merge branch 'main' of github.com:Smaug123/fsharp-red-black-tree into main

This commit is contained in:
Smaug123
2020-10-25 16:58:55 +00:00

25
.github/workflows/dotnet-core.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: .NET Core
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.301
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal