GitHub workflows to help with review #7
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: Testing Flyway Migrations | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
pgsql-version: | |
- "12" | |
- "13" | |
- "14" | |
- "15" | |
- "16" | |
steps: | |
# Check out the repo | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
# Here we fully build a docker using the current checked out code | |
# to ensure we test the current migrations. | |
- name: Build Docker Image | |
run: | | |
docker build --tag gmod/chado:local \ | |
--file docker/Dockerfile \ | |
--build-arg PGSQL_VERSION="${{ matrix.pgsql-version }}" ./ | |
# Just spin up docker the good ol' fashion way | |
# then run flyway baseline and migrate. | |
- name: Run Flyway Baseline then migrate | |
run: | | |
docker run --name=chadodocker -tid gmod/chado:local | |
docker exec chadodocker flyway baseline | |
docker exec chadodocker flyway migrate |