From 10f6887d0eb20b9f1f91fb73439c10b455830c53 Mon Sep 17 00:00:00 2001 From: Davi Marcondes Moreira Date: Tue, 5 May 2020 15:52:19 -0300 Subject: [PATCH] feature: more PHP versions to CI These changes will add the following PHP versions to run tests: - PHP 7.3.17 (cli) (built: Apr 24 2020 18:12:13) ( NTS ) - PHP 7.4.5 (cli) (built: Apr 24 2020 17:39:41) ( NTS ) --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 490abe9..5c136e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,6 +9,8 @@ workflows: - test-7.0 - test-7.1 - test-7.2 + - test-7.3 + - test-7.4 jobs: test-5.6: &test-template @@ -55,6 +57,16 @@ jobs: docker: - image: php:7.2-alpine + test-7.3: + <<: *test-template + docker: + - image: php:7.3-alpine + + test-7.4: + <<: *test-template + docker: + - image: php:7.4-alpine + test-code-quality: machine: enabled: true