(#461) Catch error and add logs #267
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# When a pull request is send, only build and test | |
name: Build & test | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
- ready_for_review | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: windows-latest | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@v1 | |
- name: Restore dotnet tools | |
run: dotnet tool restore | |
- name: Run the Cake script | |
uses: cake-build/cake-action@v1 |