Merge pull request #5 from AuroraWebSoftware/add-deleting-event #52
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: run-tests2 | |
on: | |
push: | |
paths: | |
- '**.php' | |
- '.github/workflows/run-tests.yml' | |
- 'phpunit.xml.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
php: [8.3, 8.2] | |
laravel: [11.*, 10.*] | |
stability: [prefer-lowest, prefer-stable] | |
include: | |
- laravel: 11.* | |
testbench: 9.* | |
carbon: ^2.63 | |
- laravel: 10.* | |
testbench: 8.* | |
carbon: ^2.63 | |
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
services: | |
postgres: | |
image: postgres:15 | |
ports: | |
- 5432 | |
env: | |
POSTGRES_USER: flexyfield | |
POSTGRES_PASSWORD: flexyfield | |
POSTGRES_DB: flexyfield | |
options: --health-cmd="pg_isready -U flexyfield" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Verify PostgreSQL connection | |
run: | | |
psql --version | |
sudo apt-get install -y postgresql-client | |
PGPASSWORD=flexyfield psql --host 127.0.0.1 --port ${{ job.services.postgres.ports['5432'] }} -U flexyfield -d flexyfield -c "\l" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.os == 'windows-latest' && '^^^' || '' }}${{ matrix.carbon }}" --no-interaction --no-update | |
composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
- name: List Installed Dependencies | |
run: composer show -D | |
- name: Execute tests for using postgress | |
run: vendor/bin/pest --ci --configuration ./phpunit-postgress.xml.dist | |
env: | |
POSTGRES_USER: flexyfield | |
POSTGRES_PASSWORD: flexyfield | |
POSTGRES_DB: flexyfield | |
DB_USERNAME: flexyfield | |
DB_PASSWORD: flexyfield | |
DB_PORT: ${{ job.services.postgres.ports[5432] }} |