atlassian-downloader/.github/workflows/dotnet-master.yml

29 lines
539 B
YAML
Raw Normal View History

2021-01-13 18:42:32 +03:00
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 dependencies
run: |
2021-01-13 19:22:36 +03:00
cd src/atlassian-downloader
2021-01-13 18:42:32 +03:00
dotnet restore
- name: Build
run: |
2021-01-13 19:22:36 +03:00
cd src/atlassian-downloader
2021-01-13 18:42:32 +03:00
dotnet build --no-restore
- name: Test
run: |
2021-01-13 19:22:36 +03:00
cd src/atlassian-downloader
2021-01-13 18:42:32 +03:00
dotnet test --no-build --verbosity normal