Update README.md #1145
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: | |
- '1.*' | |
pull_request: | |
types: | |
- synchronize | |
- opened | |
- edited | |
- reopened | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [7.3, 7.4, 8.0, 8.1] | |
laravel: ['8.*', '9.*'] | |
exclude: | |
- php: 7.3 | |
laravel: 9.* | |
- php: 7.4 | |
laravel: 9.* | |
name: 'PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}' | |
steps: | |
- uses: actions/checkout@master | |
# Configure PHP | |
- name: Select PHP version | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: '${{ matrix.php }}' | |
extensions: mbstring, pdo_sqlite, fileinfo, gd | |
coverage: none | |
# Configure NPM | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
# Install PHP dependencies | |
- name: Install Composer dependencies | |
run: composer require "illuminate/support:${{ matrix.laravel }}" | |
# Display installed laravel version | |
- name: Show laravel version | |
run: composer show laravel/framework | |
# Install NPM dependencies | |
- name: Install Dependencies | |
run: npm install | |
# Build static assets | |
- name: Compile Assets | |
run: npm run prod | |
# Run phpunit tests | |
- name: Run tests | |
run: ./vendor/bin/phpunit |