Create dotnet.yml

This commit is contained in:
STAM 2021-01-13 18:46:36 +03:00 committed by GitHub
parent 364af10699
commit 0d7c42a649
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

31
.github/workflows/dotnet.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: develop
on:
pull_request:
branches:
- '*'
tags:
- '*'
push:
branches:
- 'develop'
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Restore dependencies
run: |
cd src
dotnet restore
- name: Build
run: |
cd src
dotnet build --no-restore
- name: Test
run: |
cd src
dotnet test --no-build --verbosity normal