Skip to content

Commit 80083fb

Browse files
CircleCI Commit (#21)
1 parent 401a4e6 commit 80083fb

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.circleci/config.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
docker:
20+
- image: cimg/base:stable
21+
steps:
22+
# Replace this with steps to deploy to users
23+
- run:
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

Comments
 (0)