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 7512ea0 commit 93e555fCopy full SHA for 93e555f
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ phpstan:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: php-actions/composer@v5
12
13
+ - name: PHPStan Static Analysis
14
+ uses: php-actions/phpstan@v3
15
+ with:
16
+ path: src/
17
18
+ build-test:
19
20
21
22
23
24
25
26
+ - name: PHPUnit Tests
27
+ uses: php-actions/phpunit@v2
28
29
+ bootstrap: vendor/autoload.php
30
+ configuration: phpunit.xml
0 commit comments