1
0
mirror of https://github.com/akpaevj/OneSTools.TechLog.git synced 2024-12-06 08:16:09 +02:00

Create dotnetcore.yml

This commit is contained in:
Евгений Акпаев 2020-05-12 11:04:26 +03:00 committed by GitHub
parent f5b5319de3
commit 8802787196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/dotnetcore.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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.101
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal