We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10fc7d9 commit 8bd6a4bCopy full SHA for 8bd6a4b
1 file changed
.github/workflows/phpunit.yml
@@ -0,0 +1,23 @@
1
+name: PHPUnit
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
8
+jobs:
9
+ phpunit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
14
+ - name: Setup PHP
15
+ uses: shivammathur/setup-php@v2
16
+ with:
17
+ php-version: '8.4'
18
19
+ - name: Install Dependencies
20
+ run: composer install --prefer-dist --no-progress --no-suggest
21
22
+ - name: Run PHPUnit
23
+ run: ./unittest
0 commit comments