diff options
Diffstat (limited to 'pkg/runner/testdata/services-host-network/push.yml')
-rw-r--r-- | pkg/runner/testdata/services-host-network/push.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/runner/testdata/services-host-network/push.yml b/pkg/runner/testdata/services-host-network/push.yml new file mode 100644 index 0000000..8d0eb29 --- /dev/null +++ b/pkg/runner/testdata/services-host-network/push.yml @@ -0,0 +1,14 @@ +name: services-host-network +on: push +jobs: + services-host-network: + runs-on: ubuntu-latest + services: + nginx: + image: "nginx:latest" + ports: + - "8080:80" + steps: + - run: apt-get -qq update && apt-get -yqq install --no-install-recommends curl net-tools + - run: netstat -tlpen + - run: curl -v http://localhost:8080 |