Merge pull request #8 from webgriffe/index-create-or-update-fix #55
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: Build | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: "PHP ${{ matrix.php }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ] | |
env: | |
ES_URL: http://127.0.0.1:9200 | |
steps: | |
- 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 | |
- name: Runs Elasticsearch | |
uses: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: 7.4.1 | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # This is needed for Roave BC check | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
tools: "composer${{ matrix.composer }}, composer-require-checker${{ matrix.composer-require-checker }}" | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.php }}-composer- | |
- name: Install dependencies | |
run: composer install --no-interaction | |
- name: Composer Require Checker | |
run: composer-require-checker | |
- name: PHPUnit tests | |
run: vendor/bin/phpunit tests | |
- name: Install roave/backward-compatibility-check. | |
run: | | |
# Install BC check tool in separate directory to avoid dependency conflicts | |
mkdir -p test-tools/bc-check | |
composer require --working-dir="test-tools/bc-check" roave/backward-compatibility-check --no-plugins | |
- name: Run roave/backward-compatibility-check. | |
run: test-tools/bc-check/vendor/bin/roave-backward-compatibility-check --format=github-actions |