test comment posting #106
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
on: [ pull_request ] | |
jobs: | |
migration_job: | |
runs-on: ubuntu-latest | |
name: CI migration | |
steps: | |
# Checkout the source code | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Run DB migrations with the public action | |
- name: DB migrations checker with DLE | |
# uses: postgres-ai/[email protected] | |
uses: agneum/migration-action@composite-action | |
id: db-migrations | |
with: | |
dbname: test_small | |
commands: | | |
env | |
sqitch deploy --verbose | |
echo 'Migration has been completed' | |
download_artifacts: true | |
observation_interval: "10" | |
max_lock_duration: "1" | |
max_duration: "600" | |
env: | |
DLMC_CI_ENDPOINT: ${{ secrets.DLMC_CI_ENDPOINT }} | |
DLMC_VERIFICATION_TOKEN: ${{ secrets.DLMC_VERIFICATION_TOKEN }} | |
# Download artifacts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts/* | |
if-no-files-found: ignore | |
if: always() | |
# Show migration summary | |
- name: Get the response status | |
run: echo "${{ steps.db-migration.outputs.response }}" | |