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 762e4ce commit 2c9329bCopy full SHA for 2c9329b
.github/workflows/commit.yml
@@ -0,0 +1,31 @@
1
+name: Commit
2
+
3
+on: push
4
5
+jobs:
6
+ build_and_test:
7
+ name: Get Build Version
8
9
+ runs-on: ubuntu-20.04
10
11
+ strategy:
12
+ matrix:
13
+ php: [8.0, 8.1]
14
15
+ steps:
16
+ - name: Setup PHP
17
+ uses: shivammathur/setup-php@v2
18
+ with:
19
+ php-version: "${{ matrix.php }}"
20
21
+ - name: Checkout current commit
22
+ uses: actions/[email protected]
23
24
+ - name: Update composer
25
+ run: composer self-update
26
27
+ - name: Install composer dependencies
28
+ run: composer install --no-interaction
29
30
+ - name: Test
31
+ run: composer test
.travis.yml
0 commit comments