atlassian-downloader/.github/workflows/dotnet-master.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

41 lines
769 B
YAML

name: master
on:
push:
branches:
- 'master'
schedule:
- cron: '00 00 * * 6' # At 12:00 AM, only on Saturday
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