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 886a733 + cfedf11 commit 22128a7Copy full SHA for 22128a7
.github/workflows/tests.yml
@@ -0,0 +1,31 @@
1
+name: Run tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ php: [7.4, 8.0]
18
19
+ steps:
20
+ - uses: actions/checkout@v1
21
22
+ - name: Set PHP version
23
+ uses: shivammathur/setup-php@v2
24
+ with:
25
+ php-version: ${{ matrix.php }}
26
27
+ - name: Install composer dependencies
28
+ run: composer install --quiet --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
29
30
+ - name: Execute tests
31
+ run: vendor/bin/phpunit
tests/Unit/.gitignore
@@ -0,0 +1 @@
0 commit comments