Skip to content

Commit bc89b5b

Browse files
committed
Pint github workflow
1 parent 866fe32 commit bc89b5b

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 24 additions & 0 deletions
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: Checkout
11+
uses: actions/checkout@v3
12+
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@v2
15+
with:
16+
php-version: 8.2
17+
tools: composer:v2
18+
coverage: xdebug
19+
20+
- name: Install Dependencies
21+
run: composer install --no-interaction --prefer-dist --optimize-autoloader
22+
23+
- name: Tests
24+
run: ./vendor/bin/pest --ci

0 commit comments

Comments
 (0)