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 bc8b5fc commit f2d1cf8Copy full SHA for f2d1cf8
.github/workflows/main.yml
@@ -0,0 +1,22 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ php_version:
11
+ - 8.0
12
+ - 8.1
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: php-actions/composer@v6
16
+ with:
17
+ php_version: ${{ matrix.php_version }}
18
+ - uses: php-actions/phpunit@v3
19
20
21
+ php_extensions: pcov
22
+ - run: bash <(curl -s https://codecov.io/bash)
.travis.yml
0 commit comments