Merge pull request #351 from lptn/349-add-throws #1371
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test laravel projects | |
on: | |
push: | |
paths: | |
- '**.php' | |
- '**.stubphp' | |
- 'composer.json' | |
- 'tests/laravel*' | |
- 'tests/lumen*' | |
pull_request: | |
paths: | |
- '**.php' | |
- '**.stubphp' | |
- 'tests/laravel*' | |
- 'tests/lumen*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Test Laravel | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test Laravel | |
run: | | |
./tests/Application/laravel-test.sh | |
- name: Test Lumen | |
run: | | |
./tests/Application/lumen-test.sh |