github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/github/testdata/examples/service.2.yaml (about)

     1  name: service
     2  
     3  jobs:
     4    test:
     5      runs-on: ubuntu-latest
     6      services:
     7        # Label used to access the service container
     8        postgres:
     9          # Docker Hub image
    10          image: postgres
    11          # Provide the password for postgres
    12          env:
    13            POSTGRES_PASSWORD: postgres
    14      steps:
    15        - name: docker ps
    16          run: docker ps