We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ef6e2b commit 706104bCopy full SHA for 706104b
.github/workflows/phpunit.yml
@@ -0,0 +1,26 @@
1
+name: Run PHPUnit Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ run_tests:
10
+ name: Run PHPUnit Tests
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v2
16
17
+ - name: Setup PHP
18
+ uses: shivammathur/setup-php@v2
19
+ with:
20
+ php-version: '8.0'
21
22
+ - name: Install dependencies
23
+ run: composer install --no-interaction --prefer-dist
24
25
+ - name: Run PHPUnit
26
+ run: php artisan test
0 commit comments