Skip to content

Commit

Permalink
app test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TomKovac committed Jan 8, 2025
1 parent 75806d4 commit 01c0630
Show file tree
Hide file tree
Showing 2 changed files with 833 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/app-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: app-test

on:
push:
branches: [ "504-app-test-workflow" ]
paths:
- 'src/**'
- 'cake/**'
- '.github/**'
workflow_dispatch:


jobs:
run-app-test:
runs-on: [self-hosted, Windows, X64, APP]
steps:
- name: Checkout repository
uses: actions/checkout@v3 # Check out the repository

- name: Run app test PowerShell script
run: |
$result = ./scripts/app-test.ps1
Write-Output "Script Result: $result"
shell: powershell
Loading

0 comments on commit 01c0630

Please sign in to comment.