-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d35707
commit 665e3c7
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This is a basic workflow that run a simple testexecute batch routine | ||
name: BasicWorkflow | ||
run-name: ${{ github.actor }} is learning GitHub Actions | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull event, but only for the main branch | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
# Allows you to run this workflow manually from the actions tab | ||
workflow_dispatch: | ||
|
||
# Simple jpb to execute a simple batch routine that runs tests via testexecute | ||
jobs: | ||
build: | ||
runs-on: self-hosted | ||
#runs-on: SB-MA-JBMVBY3 | ||
steps: | ||
- name:Run a batch file to trigger TestComplete Tests | ||
working-directory: C:\TestRunner | ||
run: GitHub_Batch.bat |