Files
fsharp-prefix-form/.github/workflows/dotnet-core.yml
2021-01-14 19:34:21 +00:00

26 lines
542 B
YAML

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: 5.0.100
- name: Install dependencies
run: dotnet restore Expression.sln
- name: Build
run: dotnet build Expression.sln --configuration Release --no-restore
- name: Test
run: dotnet test Expression.sln --no-restore --verbosity normal