From 4e8c8ec3a5c56777f2ccd85ed29280db52a83aa2 Mon Sep 17 00:00:00 2001 From: Moray Grieve Date: Mon, 23 Dec 2024 11:30:27 +0000 Subject: [PATCH] Addition (#394) --- .github/workflows/execute_print_tests.yml | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/execute_print_tests.yml diff --git a/.github/workflows/execute_print_tests.yml b/.github/workflows/execute_print_tests.yml new file mode 100644 index 00000000..51c2f21e --- /dev/null +++ b/.github/workflows/execute_print_tests.yml @@ -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 }} +