-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add compatibility with DBAL 4 and ORM 3
- Loading branch information
Showing
15 changed files
with
190 additions
and
127 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# TEMPORARILY USED until AuditBundle is compatible with ORM 3 | ||
|
||
name: Test | ||
|
||
on: | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
name: PHP ${{ matrix.php-version }} + ${{ matrix.dependencies }} + ${{ matrix.variant }} (ORM 3) | ||
|
||
runs-on: ubuntu-latest | ||
|
||
continue-on-error: ${{ matrix.allowed-to-fail }} | ||
|
||
env: | ||
SYMFONY_REQUIRE: ${{matrix.symfony-require}} | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- php-version: '8.3' | ||
dependencies: highest | ||
allowed-to-fail: false | ||
symfony-require: 7.0.* | ||
variant: symfony/symfony:"7.0.*" | ||
remove-audit-bundle: true | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install PHP with extensions | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: pcov | ||
tools: composer:v2, flex | ||
|
||
- name: Add PHPUnit matcher | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
|
||
- name: Remove AuditBundle | ||
if: matrix.remove-audit-bundle | ||
run: composer remove sonata-project/entity-audit-bundle --dev --no-update | ||
|
||
- name: Install variant | ||
if: matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony') | ||
run: composer require ${{ matrix.variant }} --no-update | ||
|
||
- name: Install Composer dependencies (${{ matrix.dependencies }}) | ||
uses: ramsey/composer-install@v2 | ||
with: | ||
dependency-versions: ${{ matrix.dependencies }} | ||
|
||
- name: Run Tests with coverage | ||
run: make coverage | ||
|
||
- name: Send coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: build/logs/clover.xml |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.