Skip to content

Add Symfony 7 mailer support #5

Add Symfony 7 mailer support

Add Symfony 7 mailer support #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
jobs:
CI:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ 'ubuntu-latest' ]
php-versions: [ '8.1', '8.2' ]
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit --exclude-group ignore