From e04c4f3aa5af46467d9897f9627e76e070b67886 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 11:10:50 +0100 Subject: [PATCH 01/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 79 ++++++++++++++++++++++++++++++ .travis.yml | 42 ---------------- 2 files changed, 79 insertions(+), 42 deletions(-) create mode 100644 .github/workflows/code_checks.yaml delete mode 100644 .travis.yml diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml new file mode 100644 index 0000000..36f7bf4 --- /dev/null +++ b/.github/workflows/code_checks.yaml @@ -0,0 +1,79 @@ +# .github/workflows/code_checks.yaml +name: Code_Checks + +on: ["push", "pull_request"] + +jobs: + tests: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + php: ['8.0'] + stability: [ prefer-stable ] + symfony-version: ['4.4', '5.4', '6.2'] + include: + - php: '7.1' + stability: prefer-lowest + - php: '7.2' + symfony-version: 4.4 + - php: '7.2' + symfony-version: 5.0 + - php: '7.3' + symfony-version: 5.4 + - php: '7.4' + symfony-version: 5.4 + - php: '8.0' + symfony-version: 5.4 + - php: '8.0' + symfony-version: 6.2 + - php: '8.1' + symfony-version: 6.2 + - php: '8.2' + symfony-version: 6.2 + + continue-on-error: ${{ matrix.experimental }} + + name: PHP ${{ matrix.php }} - ${{ matrix.stability }} tests + steps: + # basically git clone + - uses: actions/checkout@v3 + + - name: Cache dependencies + uses: actions/cache@v3 + with: + path: ~/.composer/cache/files + key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} + + # use PHP of specific version + - uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: pcov + coverage: pcov + + - name: Install dependencies + env: + SYMFONY_REQUIRE: ${{ matrix.symfony-version }} + run: | + composer global config --no-plugins allow-plugins.symfony/flex true + composer global require --no-progress --no-scripts --no-plugins symfony/flex + composer update --no-interaction --prefer-dist --optimize-autoloader + vendor/bin/simple-phpunit install + + - name: Execute tests + env: + SYMFONY_DEPRECATIONS_HELPER: 'weak' + run: vendor/bin/phpunit --verbose + + + cs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: shivammathur/setup-php@v2 + with: + php-version: 7.4 + coverage: none + - run: composer install --no-progress + - run: composer ./vendor/bin/phpcs diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 507ceff..0000000 --- a/.travis.yml +++ /dev/null @@ -1,42 +0,0 @@ -language: php - -jobs: - fast_finish: true - include: - - php: 7.1 - env: SYMFONY_VERSION='4.4.*' COMPOSER_FLAGS='--prefer-lowest' - - php: 7.2 - env: SYMFONY_VERSION='4.4.*' - - php: 7.2 - env: SYMFONY_VERSION='5.0.*' - - php: 7.2 - - php: 7.3 - env: SYMFONY_VERSION='4.4.*' - - php: 7.3 - env: SYMFONY_VERSION='5.0.*' - - php: 7.3 - - php: 7.4 - env: SYMFONY_VERSION='4.4.*' - - php: 7.4 - env: SYMFONY_VERSION='5.0.*' - - php: 7.4 - - php: nightly - - allow_failures: - - php: nightly - -before_install: - - composer self-update - - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; - -cache: - directories: - - $HOME/.composer/cache - -install: COMPOSER_MEMORY_LIMIT=-1 composer update --prefer-dist --no-interaction $COMPOSER_FLAGS - -script: - - composer tests - -after_success: - - travis_retry php vendor/bin/php-coveralls From 5e05ed503a7e67ac9ea6d7cb3272c3669ee271b9 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 13:38:56 +0100 Subject: [PATCH 02/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index 36f7bf4..d8cc3dd 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -32,9 +32,7 @@ jobs: - php: '8.2' symfony-version: 6.2 - continue-on-error: ${{ matrix.experimental }} - - name: PHP ${{ matrix.php }} - ${{ matrix.stability }} tests + name: PHP ${{ matrix.php }} - ${{ matrix.symfony-version }} ${{ matrix.stability }} tests steps: # basically git clone - uses: actions/checkout@v3 @@ -76,4 +74,4 @@ jobs: php-version: 7.4 coverage: none - run: composer install --no-progress - - run: composer ./vendor/bin/phpcs + - run: ./vendor/bin/phpcs From 9d758041ae82c65af00f523210ada2da2dcfc406 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 13:47:45 +0100 Subject: [PATCH 03/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index d8cc3dd..5b36e18 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -62,7 +62,7 @@ jobs: - name: Execute tests env: SYMFONY_DEPRECATIONS_HELPER: 'weak' - run: vendor/bin/phpunit --verbose + run: vendor/bin/simple-phpunit --verbose cs: From 57bb1ec860a0aa0997030c8f230ccb3872542ec1 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 13:50:05 +0100 Subject: [PATCH 04/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index 5b36e18..bc7c02b 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -47,8 +47,8 @@ jobs: - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - extensions: pcov - coverage: pcov + extensions: pcov, xdebug + coverage: xdebug - name: Install dependencies env: From 66e4b7cd899eafc67fa622f370cbd820c1e1a482 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:17:53 +0100 Subject: [PATCH 05/21] chore: replace travis with github actions --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 05bf9bc..9359320 100644 --- a/composer.json +++ b/composer.json @@ -12,17 +12,17 @@ ], "require": { "php": "^7.1.3 | ^8", - "symfony/dependency-injection": "^4.4 | ^5.0 | ^6.0", - "symfony/yaml": "^4.4 | ^5.0 | ^6.0", - "symfony/config": "^4.4 | ^5.0 | ^6.0", - "symfony/http-kernel": "^4.4 | ^5.0 | ^6.0", + "symfony/dependency-injection": "^4.4.40 | ^5.0 | ^6.0", + "symfony/yaml": "^4.4.40 | ^5.0 | ^6.0", + "symfony/config": "^4.4.40 | ^5.0 | ^6.0", + "symfony/http-kernel": "^4.4.40 | ^5.0 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", "doctrine/annotations": "^1.7", "flagception/flagception": "^1.5" }, "require-dev": { "symfony/phpunit-bridge": "^5.0 | ^6.0", - "symfony/twig-bridge": "^4.4 | ^5.0 | ^6.0", + "symfony/twig-bridge": "^4.4.40 | ^5.0 | ^6.0", "flagception/database-activator": "^1.0", "squizlabs/php_codesniffer": "^3.3.1", "php-coveralls/php-coveralls": "^2.0" From 9d52c771eb4b422afd5bc6f91f43fb3676006727 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:21:09 +0100 Subject: [PATCH 06/21] chore: replace travis with github actions --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 9359320..f849faf 100644 --- a/composer.json +++ b/composer.json @@ -12,18 +12,18 @@ ], "require": { "php": "^7.1.3 | ^8", - "symfony/dependency-injection": "^4.4.40 | ^5.0 | ^6.0", - "symfony/yaml": "^4.4.40 | ^5.0 | ^6.0", - "symfony/config": "^4.4.40 | ^5.0 | ^6.0", - "symfony/http-kernel": "^4.4.40 | ^5.0 | ^6.0", + "symfony/dependency-injection": "^4.4 | ^5.4 | ^6.0", + "symfony/yaml": "^4.4 | ^5.4 | ^6.0", + "symfony/config": "^4.4 | ^5.4 | ^6.0", + "symfony/http-kernel": "^4.4 | ^5.4 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", "doctrine/annotations": "^1.7", "flagception/flagception": "^1.5" }, "require-dev": { - "symfony/phpunit-bridge": "^5.0 | ^6.0", - "symfony/twig-bridge": "^4.4.40 | ^5.0 | ^6.0", - "flagception/database-activator": "^1.0", + "symfony/phpunit-bridge": "^5.4 | ^6.0", + "symfony/twig-bridge": "^4.4 | ^5.4 | ^6.0", + "flagception/database-activator": "^1.1", "squizlabs/php_codesniffer": "^3.3.1", "php-coveralls/php-coveralls": "^2.0" }, From 8adf5c0579ca65ec7a5c7b0dd614e71eb40716c7 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:22:40 +0100 Subject: [PATCH 07/21] chore: replace travis with github actions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f849faf..54d7924 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "require-dev": { "symfony/phpunit-bridge": "^5.4 | ^6.0", "symfony/twig-bridge": "^4.4 | ^5.4 | ^6.0", - "flagception/database-activator": "^1.1", + "flagception/database-activator": "^1.0 || ^1.1", "squizlabs/php_codesniffer": "^3.3.1", "php-coveralls/php-coveralls": "^2.0" }, From 0b47174c0d5c138a198d9446b368e1644c7c2b17 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:26:09 +0100 Subject: [PATCH 08/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 3 +-- composer.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index bc7c02b..bd7529e 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -9,7 +9,6 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0'] stability: [ prefer-stable ] symfony-version: ['4.4', '5.4', '6.2'] include: @@ -62,7 +61,7 @@ jobs: - name: Execute tests env: SYMFONY_DEPRECATIONS_HELPER: 'weak' - run: vendor/bin/simple-phpunit --verbose + run: ./vendor/bin/simple-phpunit --verbose --coverage-text cs: diff --git a/composer.json b/composer.json index 54d7924..84cb217 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "require-dev": { "symfony/phpunit-bridge": "^5.4 | ^6.0", "symfony/twig-bridge": "^4.4 | ^5.4 | ^6.0", - "flagception/database-activator": "^1.0 || ^1.1", + "flagception/database-activator": "^1.0", "squizlabs/php_codesniffer": "^3.3.1", "php-coveralls/php-coveralls": "^2.0" }, From 3fe9f08b1dde6486881a0d44c282e48f8ebf37b5 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:28:23 +0100 Subject: [PATCH 09/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index bd7529e..9eb06fb 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -9,6 +9,7 @@ jobs: strategy: fail-fast: false matrix: + php: ['8.0'] stability: [ prefer-stable ] symfony-version: ['4.4', '5.4', '6.2'] include: @@ -17,7 +18,7 @@ jobs: - php: '7.2' symfony-version: 4.4 - php: '7.2' - symfony-version: 5.0 + symfony-version: 5.4 - php: '7.3' symfony-version: 5.4 - php: '7.4' From 612a0f6b9f943b5e645c1064cf2340a76f508c46 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:29:40 +0100 Subject: [PATCH 10/21] chore: replace travis with github actions --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 84cb217..ce50287 100644 --- a/composer.json +++ b/composer.json @@ -12,17 +12,17 @@ ], "require": { "php": "^7.1.3 | ^8", - "symfony/dependency-injection": "^4.4 | ^5.4 | ^6.0", - "symfony/yaml": "^4.4 | ^5.4 | ^6.0", - "symfony/config": "^4.4 | ^5.4 | ^6.0", - "symfony/http-kernel": "^4.4 | ^5.4 | ^6.0", + "symfony/dependency-injection": "^4.4.40 | ^5.4 | ^6.0", + "symfony/yaml": "^4.4.40 | ^5.4 | ^6.0", + "symfony/config": "^4.4.40 | ^5.4 | ^6.0", + "symfony/http-kernel": "^4.4.40 | ^5.4 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", "doctrine/annotations": "^1.7", "flagception/flagception": "^1.5" }, "require-dev": { "symfony/phpunit-bridge": "^5.4 | ^6.0", - "symfony/twig-bridge": "^4.4 | ^5.4 | ^6.0", + "symfony/twig-bridge": "^4.4.40 | ^5.4 | ^6.0", "flagception/database-activator": "^1.0", "squizlabs/php_codesniffer": "^3.3.1", "php-coveralls/php-coveralls": "^2.0" From de092cc5037e03041628f85a1c0e73af85b3c741 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:37:52 +0100 Subject: [PATCH 11/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 10 ++++++++++ .gitignore | 1 + composer.json | 3 +-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index 9eb06fb..88c0e64 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -75,3 +75,13 @@ jobs: coverage: none - run: composer install --no-progress - run: ./vendor/bin/phpcs + + finish: + needs: test + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.github_token }} + parallel-finished: true diff --git a/.gitignore b/.gitignore index 1251376..64abe5d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ vendor composer.lock build/logs/* !build/logs/.gitkeep +.phpunit.result.cache \ No newline at end of file diff --git a/composer.json b/composer.json index ce50287..270e95e 100644 --- a/composer.json +++ b/composer.json @@ -24,8 +24,7 @@ "symfony/phpunit-bridge": "^5.4 | ^6.0", "symfony/twig-bridge": "^4.4.40 | ^5.4 | ^6.0", "flagception/database-activator": "^1.0", - "squizlabs/php_codesniffer": "^3.3.1", - "php-coveralls/php-coveralls": "^2.0" + "squizlabs/php_codesniffer": "^3.3.1" }, "autoload": { "psr-4": { From f6f17199dd0fa15268b127dd829b9e6ca4f83540 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 14:38:24 +0100 Subject: [PATCH 12/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index 88c0e64..409f129 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -77,7 +77,7 @@ jobs: - run: ./vendor/bin/phpcs finish: - needs: test + needs: tests runs-on: ubuntu-latest steps: - name: Coveralls Finished From b8f39056eed24ba8db201120ee195834d166a4e7 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 19:46:40 +0100 Subject: [PATCH 13/21] chore: replace travis with github actions --- .coveralls.yml | 1 - composer.json | 12 ++++++------ 2 files changed, 6 insertions(+), 7 deletions(-) delete mode 100644 .coveralls.yml diff --git a/.coveralls.yml b/.coveralls.yml deleted file mode 100644 index f6e9ef4..0000000 --- a/.coveralls.yml +++ /dev/null @@ -1 +0,0 @@ -coverage_clover: build/logs/clover.xml diff --git a/composer.json b/composer.json index 270e95e..ef8a37a 100644 --- a/composer.json +++ b/composer.json @@ -12,17 +12,17 @@ ], "require": { "php": "^7.1.3 | ^8", - "symfony/dependency-injection": "^4.4.40 | ^5.4 | ^6.0", - "symfony/yaml": "^4.4.40 | ^5.4 | ^6.0", - "symfony/config": "^4.4.40 | ^5.4 | ^6.0", - "symfony/http-kernel": "^4.4.40 | ^5.4 | ^6.0", + "symfony/dependency-injection": "^4.4.40 | ^5.0 | ^6.0", + "symfony/yaml": "^4.4.40 | ^5.0 | ^6.0", + "symfony/config": "^4.4.40 | ^5.0 | ^6.0", + "symfony/http-kernel": "^4.4.40 | ^5.0 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", "doctrine/annotations": "^1.7", "flagception/flagception": "^1.5" }, "require-dev": { - "symfony/phpunit-bridge": "^5.4 | ^6.0", - "symfony/twig-bridge": "^4.4.40 | ^5.4 | ^6.0", + "symfony/phpunit-bridge": "^4.4 | ^5.0 | ^6.0", + "symfony/twig-bridge": "^4.4.40 | ^5.0 | ^6.0", "flagception/database-activator": "^1.0", "squizlabs/php_codesniffer": "^3.3.1" }, From 877ef187e6b63551b6469a8b19f2f48c30b2c501 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 19:50:25 +0100 Subject: [PATCH 14/21] chore: replace travis with github actions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ef8a37a..67c551a 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "symfony/config": "^4.4.40 | ^5.0 | ^6.0", "symfony/http-kernel": "^4.4.40 | ^5.0 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", - "doctrine/annotations": "^1.7", + "doctrine/annotations": "^1.7 || ^2.0", "flagception/flagception": "^1.5" }, "require-dev": { From bd8553dca516f14d33c305a3db9fff06ab1449df Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:04:14 +0100 Subject: [PATCH 15/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index 409f129..c41c7f9 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -26,9 +26,9 @@ jobs: - php: '8.0' symfony-version: 5.4 - php: '8.0' - symfony-version: 6.2 + symfony-version: 6.0 - php: '8.1' - symfony-version: 6.2 + symfony-version: 6.1 - php: '8.2' symfony-version: 6.2 diff --git a/composer.json b/composer.json index 67c551a..ef8a37a 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "symfony/config": "^4.4.40 | ^5.0 | ^6.0", "symfony/http-kernel": "^4.4.40 | ^5.0 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", - "doctrine/annotations": "^1.7 || ^2.0", + "doctrine/annotations": "^1.7", "flagception/flagception": "^1.5" }, "require-dev": { From 4f45d8f3ca4733bbd37cd41adf4c987b5aac83b9 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:06:20 +0100 Subject: [PATCH 16/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index c41c7f9..c84fc0e 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -11,26 +11,26 @@ jobs: matrix: php: ['8.0'] stability: [ prefer-stable ] - symfony-version: ['4.4', '5.4', '6.2'] + symfony-version: ['4.4.*', '5.4.*', '6.2.*'] include: - php: '7.1' stability: prefer-lowest - php: '7.2' - symfony-version: 4.4 + symfony-version: 4.4.* - php: '7.2' - symfony-version: 5.4 + symfony-version: 5.4.* - php: '7.3' - symfony-version: 5.4 + symfony-version: 5.4.* - php: '7.4' - symfony-version: 5.4 + symfony-version: 5.4.* - php: '8.0' - symfony-version: 5.4 + symfony-version: 5.4.* - php: '8.0' - symfony-version: 6.0 + symfony-version: 6.0.* - php: '8.1' - symfony-version: 6.1 + symfony-version: 6.1.* - php: '8.2' - symfony-version: 6.2 + symfony-version: 6.2.* name: PHP ${{ matrix.php }} - ${{ matrix.symfony-version }} ${{ matrix.stability }} tests steps: From 14e1e4263013c86c99f58215c1ee0f687d09ec38 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:07:35 +0100 Subject: [PATCH 17/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index c84fc0e..b346df6 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -9,7 +9,6 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0'] stability: [ prefer-stable ] symfony-version: ['4.4.*', '5.4.*', '6.2.*'] include: From 8442415a4f68979f8d3c5cc20445331f0e7e408e Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:08:00 +0100 Subject: [PATCH 18/21] chore: replace travis with github actions --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index ef8a37a..bffc556 100644 --- a/composer.json +++ b/composer.json @@ -12,17 +12,17 @@ ], "require": { "php": "^7.1.3 | ^8", - "symfony/dependency-injection": "^4.4.40 | ^5.0 | ^6.0", - "symfony/yaml": "^4.4.40 | ^5.0 | ^6.0", - "symfony/config": "^4.4.40 | ^5.0 | ^6.0", - "symfony/http-kernel": "^4.4.40 | ^5.0 | ^6.0", + "symfony/dependency-injection": "^4.4 | ^5.0 | ^6.0", + "symfony/yaml": "^4.4 | ^5.0 | ^6.0", + "symfony/config": "^4.4 | ^5.0 | ^6.0", + "symfony/http-kernel": "^4.4 | ^5.0 | ^6.0", "twig/twig": "^1.18|^2.0|^3.0", "doctrine/annotations": "^1.7", "flagception/flagception": "^1.5" }, "require-dev": { "symfony/phpunit-bridge": "^4.4 | ^5.0 | ^6.0", - "symfony/twig-bridge": "^4.4.40 | ^5.0 | ^6.0", + "symfony/twig-bridge": "^4.4 | ^5.0 | ^6.0", "flagception/database-activator": "^1.0", "squizlabs/php_codesniffer": "^3.3.1" }, From 6ffa18939dd3765fb5d757cfd8a7052e0c07e1ea Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:10:55 +0100 Subject: [PATCH 19/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index b346df6..b061f7f 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -9,6 +9,7 @@ jobs: strategy: fail-fast: false matrix: + php: ['8.0'] stability: [ prefer-stable ] symfony-version: ['4.4.*', '5.4.*', '6.2.*'] include: @@ -30,6 +31,9 @@ jobs: symfony-version: 6.1.* - php: '8.2' symfony-version: 6.2.* + exclude: + - php: '8.2' + symfony-version: 6.2.* name: PHP ${{ matrix.php }} - ${{ matrix.symfony-version }} ${{ matrix.stability }} tests steps: From eab045a811d5f7439628677866905ad8c3cc90f9 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:11:06 +0100 Subject: [PATCH 20/21] chore: replace travis with github actions --- .github/workflows/code_checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_checks.yaml b/.github/workflows/code_checks.yaml index b061f7f..fd8c74f 100644 --- a/.github/workflows/code_checks.yaml +++ b/.github/workflows/code_checks.yaml @@ -32,7 +32,7 @@ jobs: - php: '8.2' symfony-version: 6.2.* exclude: - - php: '8.2' + - php: '8.0' symfony-version: 6.2.* name: PHP ${{ matrix.php }} - ${{ matrix.symfony-version }} ${{ matrix.stability }} tests From 2477f8951a22f9f2d54ce75ea00457512d337783 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Tue, 14 Feb 2023 20:12:54 +0100 Subject: [PATCH 21/21] chore: replace travis with github actions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bffc556..0241185 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "flagception/flagception": "^1.5" }, "require-dev": { - "symfony/phpunit-bridge": "^4.4 | ^5.0 | ^6.0", + "symfony/phpunit-bridge": "^5.0 | ^6.0", "symfony/twig-bridge": "^4.4 | ^5.0 | ^6.0", "flagception/database-activator": "^1.0", "squizlabs/php_codesniffer": "^3.3.1"