mirror of
https://github.com/Smaug123/fsharp-prefix-form
synced 2025-10-06 00:08:40 +00:00
26 lines
542 B
YAML
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
|