Bump actions/checkout from 3.0.2 to 4.1.0 #180
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: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- '8.0' | |
- '8.1' | |
es: | |
- '7.14.2' | |
# - '7.15.2' | |
- '7.16.3' | |
- '7.17.5' | |
laravel: | |
- 8.* | |
- 9.* | |
prefer: | |
# - 'prefer-lowest' | |
- 'prefer-stable' | |
include: | |
- laravel: '8.*' | |
testbench: '6.*' | |
- laravel: '9.*' | |
testbench: '7.*' | |
- es: '7.14.2' | |
es-php: '7.14.*' | |
# - es: '7.15.2' | |
# es-php: '7.15.*' | |
- es: '7.16.3' | |
es-php: '7.16.*' | |
- es: '7.17.5' | |
es-php: '7.17.*' | |
name: PHP ${{ matrix.php }} - ES ${{ matrix.es }} Laravel ${{ matrix.laravel }} --${{ matrix.prefer }} | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv | |
coverage: pcov | |
- name: Configure sysctl limits | |
run: | | |
sudo swapoff -a | |
sudo sysctl -w vm.swappiness=1 | |
sudo sysctl -w fs.file-max=262144 | |
sudo sysctl -w vm.max_map_count=262144 | |
- uses: getong/elasticsearch-action@v1.2 | |
with: | |
elasticsearch version: '${{ matrix.es }}' | |
host port: 9200 | |
container port: 9200 | |
host node port: 9300 | |
node port: 9300 | |
discovery type: 'single-node' | |
- uses: actions/cache@v3.0.5 | |
name: Cache dependencies | |
with: | |
path: ~/.composer/cache/files | |
key: composer-php-${{ matrix.php }}-${{ matrix.laravel }}-${{ matrix.prefer }}-${{ hashFiles('composer.json') }} | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "elasticsearch/elasticsearch:${{ matrix.es-php }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction --no-suggest | |
- name: Wait for Elasticsearch to be ready | |
run: | | |
until curl --silent -XGET --fail http://127.0.0.1:9200; do printf '.'; sleep 1; done | |
- name: Run tests | |
run: | | |
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml | |
- uses: codecov/codecov-action@v3.1.0 | |
with: | |
fail_ci_if_error: false |