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.
2 parents b46cdd6 + 5169a84 commit 90959dfCopy full SHA for 90959df
.github/workflows/php.yml
@@ -0,0 +1,31 @@
1
+name: PHP Composer
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Setup PHP
16
+ uses: shivammathur/setup-php@v2
17
+ with:
18
+ php-version: 7.1
19
+ - uses: actions/checkout@v2
20
21
+ - name: Validate composer.json and composer.lock
22
+ run: composer validate --strict
23
24
+ - name: Install dependencies
25
+ run: composer install --prefer-dist --no-progress
26
27
+ - name: PHP Lint
28
+ run: vendor/bin/php-cs-fixer fix --dry-run -v
29
30
+ - name: PHPUnit Tests
31
+ run: vendor/bin/phpunit
.travis.yml
0 commit comments