Add NUKE and configure GitHub Actions and DanglDocu +semver: major #1
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: continuous | |
on: [push] | |
jobs: | |
windows-latest: | |
name: windows-latest | |
runs-on: windows-latest | |
env: | |
GitHubAuthenticationToken: ${{ secrets.GITHUB_TOKEN }} | |
DocuApiKey: ${{ secrets.DOCUAPIKEY }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Tests | |
run: ./build.ps1 Tests -Configuration Debug | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Test Results (${{ runner.os }}) | |
path: output/**/*_testresults.xml | |
- name: UploadDocumentation+PublishGitHubRelease | |
run: ./build.ps1 UploadDocumentation+PublishGitHubRelease |