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 ccd3b3f commit c0ff375Copy full SHA for c0ff375
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build-test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
12
+ - uses: php-actions/composer@v5
13
14
+ - name: PHPUnit Tests
15
+ uses: php-actions/phpunit@v2
16
+ with:
17
+ configuration: phpunit.xml
18
+ args: --coverage-text
phpunit.xml
@@ -7,6 +7,10 @@
<include>
<directory suffix=".php">./src</directory>
</include>
+ <report>
+ <html outputDirectory="./tests/_coverage" lowUpperBound="35" highLowerBound="70"/>
+ <text outputFile="php://stdout" showUncoveredFiles="true"/>
+ </report>
</coverage>
<testsuites>
<testsuite name="LaravelSqlReporter">
0 commit comments