Laravel 11 Compatibility #12
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: CI | |
on: [pull_request] | |
jobs: | |
php82: | |
runs-on: ubuntu-latest | |
container: | |
image: kirschbaumdevelopment/laravel-test-runner:8.2 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Composer dependency cache | |
uses: "actions/cache@v2.0.0" | |
with: | |
path: "./vendor" | |
key: php-${{ hashFiles('composer.lock') }} | |
- name: Install Dependencies | |
run: composer install --no-scripts --no-ansi --no-suggest --no-progress | |
- name: Run test suite | |
run: ./vendor/bin/phpunit | |
php83: | |
runs-on: ubuntu-latest | |
container: | |
image: kirschbaumdevelopment/laravel-test-runner:8.3 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Composer dependency cache | |
uses: "actions/cache@v2.0.0" | |
with: | |
path: "./vendor" | |
key: php-${{ hashFiles('composer.lock') }} | |
- name: Install Dependencies | |
run: composer install --no-scripts --no-ansi --no-suggest --no-progress | |
- name: Run test suite | |
run: ./vendor/bin/phpunit |