Skip to content

Bump url from 2.5.2 to 2.5.3 #267

Bump url from 2.5.2 to 2.5.3

Bump url from 2.5.2 to 2.5.3 #267

Workflow file for this run

name: Action test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
run_action:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.6
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: development
POSTGRES_USER: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 7432:5432
steps:
- uses: actions/checkout@v4.1.0
- name: Generate test migrations
run: bash scripts/test-migrations.sh
- name: Test action
uses: ./
with:
migrations_folder: "./migrations"
wait_timeout: "30"
migrations_table: "schema_migrations"
database_url: "postgresql://postgres:postgres@localhost:7432/development?sslmode=disable"