We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 866fe32 commit bc89b5bCopy full SHA for bc89b5b
1 file changed
.github/workflows/tests.yml
@@ -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