mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2025-01-14 12:47:55 +03:00
Create dotnet.yml
This commit is contained in:
parent
364af10699
commit
0d7c42a649
31
.github/workflows/dotnet.yml
vendored
Normal file
31
.github/workflows/dotnet.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user