diff --git a/.github/workflows/services-test.yaml b/.github/workflows/services-test.yaml index 9098f80..2c0eebb 100644 --- a/.github/workflows/services-test.yaml +++ b/.github/workflows/services-test.yaml @@ -1,6 +1,11 @@ on: push: workflow_dispatch: + inputs: + test: + description: 'Run tests' + required: true + default: 'true' jobs: services-test: runs-on: ubuntu-latest @@ -12,4 +17,5 @@ jobs: steps: - name: Test with Redis run: | + echo ${{ github.event.inputs.test }} docker ps --format "table {{.Names}}" \ No newline at end of file