Skip to content

Commit

Permalink
Allow composer files to be PHP version specific
Browse files Browse the repository at this point in the history
- need to support multiple composer entries to support
  both PHP 5.4 and PHP7.4
  • Loading branch information
gregcorbett committed Oct 9, 2023
1 parent f2940a0 commit 4dcf508
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
# Define jobs for all combinations of php, mariadb and extension, up to "include"
# Tests will be performed for each combination
# These can fail if "experimental" is true. Currently all must pass
php-version: ["7.4"]
mariadb-version: ["10.3"]
extension: ["pdo_mysql"]
experimental: [false]
include:
# Define jobs for individual combinations to be tested
# These can fail if "experimental" is true. Currently all can fail
- php-version: "8.0"
mariadb-version: "10.3"
extension: "pdo_mysql"
experimental: true
- php-version: 5.4
composer-json: "composer.json"
composer-lock: "composer.lock"
#- php-version: 7.4
# composer-json: ""
# composer-lock: ""


services:
mariadb:
Expand Down

0 comments on commit 4dcf508

Please sign in to comment.