Skip to content

CI

CI #1151

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: '0 0 * * *'
jobs:
docker-compose:
name: docker-compose (production container)
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: docker build / start
run: docker compose -f docker-compose.ci.yml up -d
- 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: docker stop
run: docker compose -f docker-compose.ci.yml stop
php82:
name: PHP 8.2
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: composer test
uses: docker://ghcr.io/chubbyphp/ci-php82:latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
php83:
name: PHP 8.3
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: composer test
uses: docker://ghcr.io/chubbyphp/ci-php83:latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
php84:
name: PHP 8.4
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: composer test
uses: docker://ghcr.io/chubbyphp/ci-php84:latest
env:
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 }}