Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit a34f7c6

Browse files
committed
Merge branch 'release/1.0.2'
2 parents fe4101d + 1b17e1e commit a34f7c6

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: quay.io/govcms/govcms-ci
6+
steps:
7+
- checkout
8+
- run: composer validate --strict || true
9+
- run:
10+
name: Setup codebase
11+
command: |
12+
git checkout -b latest-package-"${CIRCLE_SHA1}"
13+
git clone https://github.com/govCMS/govCMS8-scaffold-paas /app
14+
composer --working-dir=/app config repositories.test path "/home/project"
15+
composer --working-dir=/app update
16+
composer --working-dir=/app require govcms/require-dev:dev-latest-package-"${CIRCLE_SHA1}" --ignore-platform-reqs
17+
- run:
18+
name: Ensure require-dev package is retrievable
19+
working_directory: /app
20+
command: |
21+
composer info govcms/require-dev

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ To use this, you can use `satis.govcms.gov.au` as a repository source, and then:
88
```
99
composer require --dev govcms/require-dev ~1
1010
```
11+
12+
[![CircleCI](https://circleci.com/gh/govCMS/require-dev.svg?style=svg)](https://circleci.com/gh/govCMS/require-dev)

composer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"phpunit/phpunit": "6.5",
77
"behat/behat": "^3.5",
88
"behat/gherkin": "^4.5",
9+
"drupal/coder": "^8.3",
10+
"drupal/drupal-extension": "3.4.1",
911
"jakub-onderka/php-parallel-lint": "^1.0",
1012
"integratedexperts/behat-screenshot": "^0.7.2"
1113
}

0 commit comments

Comments
 (0)