We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 496d14a commit 2f00c44Copy full SHA for 2f00c44
.github/workflows/test-install.yml
@@ -0,0 +1,34 @@
1
+name: Run tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - develop
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
+ name: Test install
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v3
20
21
+ - name: Setup PHP
22
+ uses: shivammathur/setup-php@v2
23
+ with:
24
+ php-version: '8.1'
25
+ tools: composer
26
27
+ - name: Execute test
28
+ run: |
29
+ composer create-project laravel/laravel test-project
30
+ cd test-project
31
+ composer require rabiloo/coding-standard --dev
32
+ ls -la
33
+ php artisan vendor:publish --tag rabiloo-coding-standard
34
0 commit comments