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 3d3c389 commit 3cd38fbCopy full SHA for 3cd38fb
.github/workflows/tests.yml
@@ -0,0 +1,23 @@
1
+name: Unit Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ timeout-minutes: 10
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v3
18
19
+ - name: PHPUnit tests
20
+ uses: php-actions/phpunit@v3
21
+ with:
22
+ configuration: "custom/path/to/phpunit.xml"
23
+ memory_limit: "256M"
0 commit comments