Adds PR build and test workflow.

This commit is contained in:
Dave Curylo 2021-02-10 07:44:52 -05:00
Родитель 62698755af
Коммит 1d1d3d8949
1 изменённых файлов: 25 добавлений и 0 удалений

25
.github/workflows/build-and-test.yml поставляемый Normal file
Просмотреть файл

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