File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
name : CI migration
7
7
steps :
8
- - name : Check database migrations with DLE
9
- uses :
postgres-ai/[email protected]
8
+ # Checkout the source code
9
+ - name : Checkout
10
+ uses : actions/checkout@v2
11
+
12
+ # Run DB migrations with the public action
13
+ - name : DB migrations checker with DLE
14
+ uses :
postgres-ai/[email protected]
10
15
id : db-migrations
11
16
with :
12
17
dbname : test
17
22
DATABASE_LAB_CI=true
18
23
FLYWAY_CONNECT_RETRIES=60
19
24
FLYWAY_BASELINE_ON_MIGRATE=true
25
+ download_artifacts : false
26
+ observation_interval : " 1"
27
+ max_lock_duration : " 1"
28
+ max_duration : " 600"
20
29
env :
21
30
DLMC_CI_ENDPOINT : ${{ secrets.DLMC_CI_ENDPOINT }}
22
31
DLMC_VERIFICATION_TOKEN : ${{ secrets.DLMC_VERIFICATION_TOKEN }}
23
32
33
+ # Download artifacts
34
+ # - name: Upload artifacts
35
+ # uses: actions/upload-artifact@v2
36
+ # with:
37
+ # name: artifacts
38
+ # path: artifacts/*
39
+ # if-no-files-found: ignore
40
+ # if: always()
41
+
42
+ # Show migration summary
24
43
- name : Get the response status
25
44
run : echo "${{ steps.db-migration.outputs.response }}"
You can’t perform that action at this time.
0 commit comments