Skip to content

Commit 8e29d7c

Browse files
committed
Resolve conflicts
2 parents dda609c + a52b961 commit 8e29d7c

19 files changed

+300
-340
lines changed

.github/workflows/php.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run tests
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
13+
- name: Validate composer.json and composer.lock
14+
run: composer validate
15+
16+
- name: Install dependencies
17+
run: composer install --prefer-dist --no-progress --no-suggest
18+
19+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
20+
# Docs: https://getcomposer.org/doc/articles/scripts.md
21+
22+
- name: Run test suite
23+
run: ./vendor/bin/phpunit ./tests

0 commit comments

Comments
 (0)