/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/runner/testdata/services/push.yaml
26 строк
744 B
Sam Foo
Add support for service containers (#1949)
19 окт 2023, 12:24
Не верифицирован
19 окт 2023, 12:24
ceeb6c1
Код
Авторство
О чём код?
name: services on: push jobs: services: name: Reproduction of failing Services interpolation runs-on: ubuntu-latest services: postgres: image: postgres:12 env: POSTGRES_USER: runner POSTGRES_PASSWORD: mysecretdbpass POSTGRES_DB: mydb options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 ports: - 5432:5432 steps: - name: Echo the Postgres service ID / Network / Ports run: | echo "id: ${{ job.services.postgres.id }}" echo "network: ${{ job.services.postgres.network }}" echo "ports: ${{ job.services.postgres.ports }}"