[Conductor] Update all of scheb #940
Workflow file for this run
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: "Continuous Integration" | |
on: | |
- push | |
- pull_request | |
env: | |
APP_ENV: test | |
DATABASE_URL: "mysql://root:[email protected]:3306/packagist?serverVersion=8.0" | |
jobs: | |
tests: | |
name: "CI" | |
runs-on: ubuntu-24.04-arm | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # 2.33.0 | |
with: | |
coverage: "none" | |
extensions: "intl, zip, apcu" | |
php-version: "8.4" | |
tools: composer | |
ini-values: apc.enable_cli=1 | |
- name: "Start MySQL" | |
run: sudo systemctl start mysql.service | |
- uses: ramsey/composer-install@a2636af0004d1c0499ffca16ac0b4cc94df70565 # 3.1.0 | |
with: | |
composer-options: "--ansi --no-interaction --no-progress --prefer-dist" | |
- name: Start Redis | |
uses: supercharge/redis-github-action@ea9b21c6ecece47bd99595c532e481390ea0f044 # 1.8.0 | |
with: | |
redis-version: 6 | |
- name: "Setup DB" | |
run: | | |
bin/console doctrine:database:create -n | |
bin/console doctrine:schema:create -n | |
- name: "Run tests" | |
run: "composer test" |