Install and Test Project Template #50
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
name: Install and Test Template | |
run-name: Install and Test Project Template | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Install-And-Test-Template: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # This is nescessary so it does not conflict with git-version | |
- name: Run cake step | |
uses: cake-build/cake-action@v1 | |
with: | |
script-path: template.cake | |
target: InstallAndTestTemplate |