Skip to content

Commit

Permalink
Add Symfony 7 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
stloyd committed Nov 30, 2023
1 parent 1ca99d3 commit fce6148
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 5
env:
PHP_CS_FIXER_FUTURE_MODE: '1'
steps:
Expand All @@ -29,7 +29,7 @@ jobs:

phpstan:
runs-on: ubuntu-latest
timeout-minutes: 20
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -53,7 +53,7 @@ jobs:
phpunit:
name: PHPUnit (PHP ${{ matrix.php }} + ${{ matrix.symfony-version }})
runs-on: ubuntu-latest
timeout-minutes: 20
timeout-minutes: 10
strategy:
matrix:
include:
Expand All @@ -64,14 +64,16 @@ jobs:
bc: true
- php: '8.0'
symfony-version: '^5.4'
- php: '8.1'
symfony-version: '^5.4'
- php: '8.1'
symfony-version: '^6.3'
- php: '8.2'
symfony-version: '^6.3'
- php: '8.2'
symfony-version: '^7.0'
- php: '8.3'
symfony-version: '^6.3'
- php: '8.3'
symfony-version: '^7.0'
fail-fast: false

steps:
Expand Down Expand Up @@ -108,7 +110,7 @@ jobs:
- name: Upload test artifacts
if: always()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: phpunit-logs-php${{ matrix.php }}
path: build/logs/phpunit
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Installation

All the installation instructions are located in the documentation, check it for a specific version:

* [__2.0__](https://github.com/hwi/HWIOAuthBundle/blob/master/docs/1-setting_up_the_bundle.md) (current) - with support for Symfony: `^5.4` & `^6.1` (PHP: `^7.4`, `^8.0`),
* [__2.x__](https://github.com/hwi/HWIOAuthBundle/blob/master/docs/1-setting_up_the_bundle.md) (current) - with support for Symfony: `^5.4`, `^6.3` & `^7.0` (PHP: `^7.4`, `^8.0`),

* [__1.4__](https://github.com/hwi/HWIOAuthBundle/blob/1.4/Resources/doc/1-setting_up_the_bundle.md) (unsupported) - with support for Symfony: `^4.4` & `^5.1` (PHP: `^7.3` & `^8.0`),

Expand All @@ -22,7 +22,7 @@ Documentation
The bulk of the documentation is stored in the `Resources/doc/index.md`
file in this bundle. Read the documentation for version:

* [__2.0__](https://github.com/hwi/HWIOAuthBundle/blob/master/docs/index.md)
* [__2.x__](https://github.com/hwi/HWIOAuthBundle/blob/master/docs/index.md)
* [__1.4__](https://github.com/hwi/HWIOAuthBundle/blob/1.4/Resources/doc/index.md) (unsupported)

This bundle contains support for 58 different providers:
Expand Down

0 comments on commit fce6148

Please sign in to comment.