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 401a4e6 commit 80083fbCopy full SHA for 80083fb
.circleci/config.yml
@@ -0,0 +1,32 @@
1
+# This config was automatically generated from your source code
2
+# Stacks detected: deps:php:.
3
+version: 2.1
4
+orbs:
5
+ php: circleci/php@1
6
+jobs:
7
+ test-php:
8
+ # Install php packages and run tests
9
+ docker:
10
+ - image: cimg/php:8.2.7-node
11
+ steps:
12
+ - checkout
13
+ - php/install-packages
14
+ - run:
15
+ name: run tests
16
+ command: ./vendor/bin/phpunit
17
+ deploy:
18
+ # This is an example deploy job, not actually used by the workflow
19
20
+ - image: cimg/base:stable
21
22
+ # Replace this with steps to deploy to users
23
24
+ name: deploy
25
+ command: '#e.g. ./deploy.sh'
26
+workflows:
27
+ build-and-test:
28
+ jobs:
29
+ - test-php
30
+ # - deploy:
31
+ # requires:
32
+ # - test-php
0 commit comments