Skip to content

Commit 8bd6a4b

Browse files
committed
WIP
1 parent 10fc7d9 commit 8bd6a4b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/phpunit.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)