Skip to content

Commit

Permalink
Explicitly test symfony 6.x support via GH CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Dec 2, 2021
1 parent 5b77477 commit f07b2ed
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -40,19 +40,25 @@ jobs:
php-version: "7.1"
symfony-deprecations-helper: "weak"

# Test LTS
# Test legacy LTS
- symfony-require: "4.4.*"
dependencies: "stable"
php-version: "7.4"
symfony-deprecations-helper: "weak"

# Test against latest Symfony 5.x dev
- symfony-require: "5.*"
# Test latest LTS
- symfony-require: "5.4.*"
dependencies: "highest"
php-version: "8.0"
symfony-deprecations-helper: "weak"

# Test against latest Symfony dev
# Test last supported minor version
- symfony-require: "6.*"
dependencies: "highest"
php-version: "8.0"
symfony-deprecations-helper: "weak"

# Bleeding edge
- php-version: "8.1"
dependencies: "highest"
stability: "dev"
Expand Down

0 comments on commit f07b2ed

Please sign in to comment.