chore: some refactoring and takeovers #284
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: CI | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: CI Gate | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: install tools, build and test | |
env: | |
# Workaround to force usage of scoop apps installed in USERPROFILE. | |
USER_PATH_FIRST: 1 | |
run: | | |
.\build.ps1 -install | |
.\build.ps1 -target selftests | |
shell: powershell | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action/composite@v2 | |
if: always() | |
with: | |
files: | | |
test/output/test-report.xml | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts.zip | |
retention-days: 90 | |
path: "build/**/artifacts.*" | |
if-no-files-found: error |