Prepare a tests/integration directory that will contain tests of the … #29
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: docker CI | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * MON" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
database-type: [PostgreSQL, SQLite3] | |
fail-fast: false | |
defaults: | |
run: | |
working-directory: docker | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Create image | |
run: | | |
./create_secrets.sh | |
./create_volume.sh | |
./create_image.sh | |
- name: Run tests with docker run | |
run: | | |
./run_turing_tests.sh run ${{ matrix.database-type }} | |
- name: Run tests with docker exec | |
if: matrix.database-type != 'SQLite3' | |
run: | | |
./create_container.sh | |
./start_container.sh | |
./run_turing_tests.sh exec ${{ matrix.database-type }} | |
./stop_container.sh | |
./destroy_container.sh | |
warn: | |
runs-on: ubuntu-latest | |
if: github.repository == 'dmf-unicatt/turing-dmf' && github.ref == 'refs/heads/main' && github.event_name == 'schedule' | |
steps: | |
- name: Warn if scheduled workflow is about to be disabled | |
uses: fem-on-colab/warn-workflow-about-to-be-disabled-action@main | |
with: | |
workflow-filename: docker_ci.yml | |
days-elapsed: 50 |