diff --git a/.github/actions/run-unit-tests/action.yml b/.github/actions/run-unit-tests/action.yml index ee2c75429e..d1164cfdb8 100644 --- a/.github/actions/run-unit-tests/action.yml +++ b/.github/actions/run-unit-tests/action.yml @@ -1,4 +1,4 @@ -name: Tests +name: Run Unit Tests inputs: python-version: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000000..555ba898bc --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,22 @@ +name: Tests + +on: + workflow_call: + inputs: + python-version: + required: true + type: string + os: + required: true + type: string + +jobs: + tests: + runs-on: ${{ inputs.os }} + steps: + - name: Test Python ${{ inputs.python-version }} + uses: ./.github/actions/run-unit-tests + with: + python-version: "3.9" + os: "ubuntu-latest" + is_pr: "false" \ No newline at end of file