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 a40dab3 commit a5b9d39Copy full SHA for a5b9d39
.github/workflows/php.yml
@@ -0,0 +1,20 @@
1
+name: PHP Composer
2
+
3
+on: [push]
4
5
+jobs:
6
7
+ build:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v2
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
+ - name: Run test suite
20
+ run: composer run-script test
composer.json
@@ -15,6 +15,9 @@
}
],
"license": "MIT",
+ "scripts": {
+ "test": "vendor/bin/phpunit"
+ },
21
"require": {
22
"illuminate/support": "^6.0",
23
"illuminate/container": "^6.0",
0 commit comments