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 4cd2689 commit c022625Copy full SHA for c022625
.github/workflows/php.yml
@@ -0,0 +1,23 @@
1
+name: PHP Composer
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: composer run-script test
0 commit comments