File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 46
46
postgresql user : ' homestead'
47
47
postgresql password : ' secret'
48
48
49
+ - name : Remove Nova on a pull request
50
+ if : github.event_name == 'pull_request'
51
+ run : composer remove laravel/nova --no-update --no-interaction
52
+
49
53
- name : Copy .env
50
54
run : php -r "file_exists('.env') || copy('.env.example', '.env');"
51
55
54
58
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
55
59
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
56
60
57
- - name : Execute tests (Unit and Feature tests) via PHPUnit
58
- run : vendor/bin/phpunit --configuration phpunit.xml.dist
61
+ - name : Execute Integration and Feature tests via PHPUnit
62
+ run : vendor/bin/phpunit --configuration phpunit.xml.dist --testsuite Integration,Feature
63
+
64
+ - name : Execute Nova tests via PHPUnit
65
+ if : github.event_name != 'pull_request'
66
+ run : vendor/bin/phpunit --configuration phpunit.xml.dist --testsuite Nova
You can’t perform that action at this time.
0 commit comments