Bump redis from 4.3.4 to 5.0.3 in /systemd #133
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: Test database schema migrations | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- "main" | |
push: | |
paths: | |
- 'sql/migrations/**' | |
jobs: | |
flyway-check: | |
name: Validate the Flyway migrations on an empty database | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
- name: Apply all migrations on empty DB | |
run: docker compose up --exit-code-from flyway | |
- name: Print the flyway logs, if needed later | |
run: docker compose logs flyway | |
if: always() |