Skip to content

Commit d39721b

Browse files
committed
add automated tests
1 parent 19e1e54 commit d39721b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/pest.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Tests
2+
3+
on: ['push', 'pull_request']
4+
5+
jobs:
6+
ci:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Setup PHP
11+
uses: shivammathur/setup-php@v2
12+
with:
13+
php-version: 8.3
14+
tools: composer:v2
15+
coverage: xdebug
16+
17+
- name: Checkout
18+
uses: actions/checkout@v3
19+
20+
- name: Install Dependencies
21+
run: composer install --no-interaction --prefer-dist --optimize-autoloader
22+
23+
- name: Tests
24+
run: composer test -- --parallel

0 commit comments

Comments
 (0)