Feat builder #1
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: Integration Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| integration: | |
| runs-on: ubuntu-latest | |
| services: | |
| mysql: | |
| image: mysql:8.4 | |
| ports: | |
| - 13306:3306 | |
| env: | |
| MYSQL_ROOT_PASSWORD: test | |
| MYSQL_DATABASE: query_test | |
| options: >- | |
| --health-cmd="mysqladmin ping -h localhost" | |
| --health-interval=10s | |
| --health-timeout=5s | |
| --health-retries=5 | |
| postgres: | |
| image: postgres:16 | |
| ports: | |
| - 15432:5432 | |
| env: | |
| POSTGRES_PASSWORD: test | |
| POSTGRES_DB: query_test | |
| options: >- | |
| --health-cmd="pg_isready" | |
| --health-interval=10s | |
| --health-timeout=5s | |
| --health-retries=5 | |
| clickhouse: | |
| image: clickhouse/clickhouse-server:24 | |
| ports: | |
| - 18123:8123 | |
| - 19000:9000 | |
| options: >- | |
| --health-cmd="wget --spider -q http://localhost:8123/ping" | |
| --health-interval=10s | |
| --health-timeout=5s | |
| --health-retries=5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| extensions: pdo, pdo_mysql, pdo_pgsql | |
| - name: Install dependencies | |
| run: composer install --no-interaction --prefer-dist | |
| - name: Run integration tests | |
| run: composer test:integration |