diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 11f3372..1c6b501 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -40,3 +40,4 @@ jobs: uses: ./sipssert/actions/Run_Test with: test_set: ${{ matrix.test_set }} + params: ${{ matrix.params }} diff --git a/actions/Run_Test/action.yml b/actions/Run_Test/action.yml index 077e857..73cb612 100644 --- a/actions/Run_Test/action.yml +++ b/actions/Run_Test/action.yml @@ -4,13 +4,16 @@ inputs: test_set: description: "Name of the Test Set to run" required: true + params: + description: "params to be passed to the script" + required: false runs: using: 'composite' steps: - name: Run All Tests run: | cd tests - SETS=${{ inputs.test_set }} sh -x ./run-all.sh + sipssert ${{ inputs.params }} ${{ inputs.test_set }} shell: bash - name: Publish logs