Bump symfony/http-foundation from 6.4.10 to 6.4.14 #76
Workflow file for this run
This file contains 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: Tests | |
on: ['push', 'pull_request'] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
php: ['8.1', '8.2', '8.3'] | |
services: | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_DATABASE: test | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306:3306 | |
options: >- | |
--health-cmd "mysqladmin ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
APP_ENV: testing | |
DB_CONNECTION: mysql | |
DB_HOST: localhost | |
DB_PORT: 3306 | |
DB_DATABASE: test | |
DB_USERNAME: root | |
DB_PASSWORD: root | |
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: :php-psr | |
tools: composer:v2 | |
coverage: none | |
- name: Move .env file | |
run: mv .env.example .env | |
- name: Install PHP dependencies | |
run: composer update --prefer-stable --no-interaction --no-progress | |
- name: Set up MySQL | |
run: | | |
sudo systemctl start mysql | |
mysql -e 'CREATE DATABASE IF NOT EXISTS test;' -uroot -proot | |
mysql -e 'SHOW DATABASES;' -uroot -proot | |
- name: Migrations | |
run: | | |
php artisan key:generate | |
php artisan migrate | |
php artisan db:seed | |
- name: Unit Tests | |
run: composer test | |
- name: Source Linter | |
run: composer lint |