Skip to content

Commit 2f00c44

Browse files
committed
Debug test flow
1 parent 496d14a commit 2f00c44

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/test-install.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
pull_request:
9+
branches:
10+
- master
11+
- develop
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+
ls -la

0 commit comments

Comments
 (0)