atlassian-downloader/.github/workflows/dotnet-develop.yml
stam 6b6d9d1111 1.0.0.6
* json-bakups splited to another repo
* temprorary disabled single-file in build scripts
2021-01-15 02:19:31 +03:00

44 lines
764 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
dotnet restore
- name: Build
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
run: |
cd src
dotnet build --no-restore
- name: Test
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
run: |
cd src
dotnet test --no-build --verbosity normal