We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f4b9a2 commit bf0ff20Copy full SHA for bf0ff20
.circleci/config.yml
@@ -70,6 +70,19 @@ jobs:
70
bin/magento setup:di:compile
71
bin/magento module:status Algolia_AlgoliaSearch
72
73
+ magento-test:
74
+ docker:
75
+ - image: cimg/php:8.2
76
+ steps:
77
+ - checkout
78
+ - run:
79
+ name: Run PHP Unit Tests
80
+ command: |
81
+ composer require --dev phpunit/phpunit
82
+ vendor/bin/phpunit --testsuite Unit
83
+ - store_test_results:
84
+ path: ~/project/vendor/bin/phpunit
85
+
86
workflows:
87
magento-build-and-test:
88
jobs:
@@ -81,4 +94,5 @@ workflows:
94
filters:
95
branches:
96
only:
- - MAGE-991
97
+ - MAGE-991
98
+ - magento-test
0 commit comments