mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2025-01-01 06:55:29 +03:00
44 lines
827 B
YAML
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
|