use chubbyphp/api #1806
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: CI | |
| on: | |
| push: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| docker-compose: | |
| name: docker-compose (production container) | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: blacksmith docker | |
| uses: useblacksmith/setup-docker-builder@v1 | |
| - name: docker build / start | |
| env: | |
| DOCKER_BUILDKIT: 1 | |
| COMPOSE_DOCKER_CLI_BUILD: 1 | |
| run: | | |
| docker compose -f docker-compose.ci.yml build --build-arg BUILDKIT_INLINE_CACHE=1 | |
| docker compose -f docker-compose.ci.yml up -d --wait --wait-timeout 30 | |
| - name: wait for nginx | |
| run: while ! nc -z localhost 443; do sleep 0.1; done | |
| - name: ping | |
| run: curl --insecure https://localhost/ping -vvv | |
| - name: openapi | |
| run: curl --insecure https://localhost/openapi -vvv | |
| - name: docker stop | |
| run: docker compose -f docker-compose.ci.yml stop | |
| php83: | |
| name: PHP 8.3 | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| services: | |
| mongo: | |
| image: mongo:8 | |
| env: | |
| MONGO_INITDB_ROOT_USERNAME: petstore | |
| MONGO_INITDB_ROOT_PASSWORD: KVKtkrTHhKuTJTor8pCP | |
| ports: | |
| - 27017:27017 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: wait for databases | |
| run: | | |
| while ! nc -z localhost 27017; do sleep 0.1; done | |
| - name: composer test | |
| uses: docker://ghcr.io/chubbyphp/ci-php83:latest | |
| env: | |
| APP_ENV: phpunit | |
| MONGO_URI: mongodb://petstore:[email protected]:27017 | |
| COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
| php84: | |
| name: PHP 8.4 | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| services: | |
| mongo: | |
| image: mongo:8 | |
| env: | |
| MONGO_INITDB_ROOT_USERNAME: petstore | |
| MONGO_INITDB_ROOT_PASSWORD: KVKtkrTHhKuTJTor8pCP | |
| ports: | |
| - 27017:27017 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: wait for databases | |
| run: | | |
| while ! nc -z localhost 27017; do sleep 0.1; done | |
| - name: composer test | |
| uses: docker://ghcr.io/chubbyphp/ci-php84:latest | |
| env: | |
| APP_ENV: phpunit | |
| MONGO_URI: mongodb://petstore:[email protected]:27017 | |
| COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
| php85: | |
| name: PHP 8.5 | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| services: | |
| mongo: | |
| image: mongo:8 | |
| env: | |
| MONGO_INITDB_ROOT_USERNAME: petstore | |
| MONGO_INITDB_ROOT_PASSWORD: KVKtkrTHhKuTJTor8pCP | |
| ports: | |
| - 27017:27017 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: wait for databases | |
| run: | | |
| while ! nc -z localhost 27017; do sleep 0.1; done | |
| - name: composer test | |
| uses: docker://ghcr.io/chubbyphp/ci-php85:latest | |
| env: | |
| APP_ENV: phpunit | |
| MONGO_URI: mongodb://petstore:[email protected]:27017 | |
| COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
| - name: sonarcloud.io | |
| uses: sonarsource/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |