Docker tests #64
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
# This workflow runs docker tests sequentially in one container. | |
# It is made to check that no one test scripts is failed because of forgotten to add to parallel tests list. | |
name: Docker tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
sequiential: | |
uses: ./.github/workflows/dockertests.yml | |
with: | |
command-json-array: > | |
[ | |
"make pg_integration_test" | |
] |