Docker Compose Integration Test #179
This file contains hidden or 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 Compose Integration Test | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - Dockerfile | |
| - docker-compose.yml | |
| - policies/** | |
| - tests/docker-compose-integration.sh | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - Dockerfile | |
| - docker-compose.yml | |
| - policies/** | |
| - tests/docker-compose-integration.sh | |
| schedule: | |
| - cron: "0 6 * * *" # daily at 06:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| integration-test: | |
| name: Docker Compose Integration | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run integration tests | |
| run: ./tests/docker-compose-integration.sh |