/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/gen.yml
38 строк
1 KB
dependabot[bot]
build(deps): bump actions/upload-artifact from 6 to 7 (#4320)
17 апр 2026, 07:27
Не верифицирован
17 апр 2026, 07:27
ee439b8
Код
Авторство
О чём код?
name: sqlc-pg-gen on: workflow_dispatch: jobs: gen: name: sqlc-pg-gen runs-on: ubuntu-22.04 services: postgres: image: postgres:15.0-alpine env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: postgres ports: - 5432:5432 # needed because the postgres container does not provide a healthcheck options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod check-latest: true - run: go build -o sqlc-pg-gen ./internal/tools/sqlc-pg-gen - run: mkdir -p gen/contrib - run: ./sqlc-pg-gen gen env: PG_USER: postgres PG_HOST: localhost PG_DATABASE: postgres PG_PASSWORD: postgres PG_PORT: ${{ job.services.postgres.ports['5432'] }} - name: Save results uses: actions/upload-artifact@v7 with: name: sqlc-pg-gen-results path: gen