atlassian-downloader/.github/workflows/dotnet-develop.yml
2021-01-14 01:29:52 +03:00

44 lines
827 B
YAML

name: develop
on:
pull_request:
branches:
- '*'
tags:
- '*'
push:
branches:
- 'develop'
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Restore
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
run: |
cd src/atlassian-downloader
dotnet restore
- name: Build
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
run: |
cd src/atlassian-downloader
dotnet build --no-restore
- name: Test
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
run: |
cd src/atlassian-downloader
dotnet test --no-build --verbosity normal