Bump serde_json from 1.0.132 to 1.0.138 #291
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |