We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01d4453 commit 3589b7bCopy full SHA for 3589b7b
1 file changed
.github/workflows/phpunit.yml
@@ -0,0 +1,25 @@
1
+name: PHPUnit
2
+
3
+on:
4
+ push:
5
+ branches: [ main, master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ php: [8.4]
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Setup PHP
18
+ uses: shivammathur/setup-php@v2
19
+ with:
20
+ php-version: ${{ matrix.php }}
21
+ extensions: 'pdo_sqlite'
22
+ - name: Install dependencies
23
+ run: composer install --no-progress --no-suggest --prefer-dist
24
+ - name: Run tests
25
+ run: ./vendor/bin/phpunit --colors=never
0 commit comments