Skip to content

Commit

Permalink
Addition (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
moraygrieve authored Dec 23, 2024
1 parent 6a8d38a commit 4e8c8ec
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/execute_print_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Print a set of test details
#
name: '[execute] Execute print tests'
run-name: Print test details
on:
workflow_dispatch:
inputs:
arguments:
description: 'Arguments to the pysys print'
required: false
default: ''

jobs:
test-run:
runs-on: [self-hosted, Linux, X64, all-testnets]
steps:
- name: 'Check out ten-test'
uses: actions/checkout@v3
with:
path: ./ten-test

- name: 'Print tests'
run: |
cd ${{ github.workspace }}/ten-test
/usr/local/bin/pysys.py print ${{ github.event.inputs.arguments }}

0 comments on commit 4e8c8ec

Please sign in to comment.