Add integration test and make it pass #124
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: Continuous Integration | |
on: | |
push: ~ | |
pull_request: ~ | |
schedule: | |
- | |
cron: "0 1 * * 6" # Run at 1am every Saturday | |
workflow_dispatch: ~ | |
jobs: | |
tests: | |
name: "PHP ${{ matrix.php }}" | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [7.4, 8.0] | |
env: | |
ESB_CONSOLE_PORT: 8080 | |
ESB_HTTP_SERVER_PORT: 34981 | |
ESB_HTTP_SERVER_MAX_BODY_SIZE: 10485760 | |
ESB_BEANSTALKD_URL: tcp://127.0.0.1:11300 | |
ES_BASE_URI: http://127.0.0.1:9200 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # This is needed for Roave BC check | |
- 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: Run Elasticsearch | |
uses: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: 7.4.1 | |
- name: Run Beanstalk | |
run: sudo apt-get update && sudo apt-get install beanstalkd | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
tools: "composer, 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: Run Easy Coding Standard | |
run: vendor/bin/ecs check | |
- name: Run PHPStan | |
run: vendor/bin/phpstan analyse --no-progress -l max -c phpstan.neon src/ | |
- name: PHPUnit tests | |
run: vendor/bin/phpunit tests | |
- name: Upload Elasticsearch logs | |
if: ${{ failure() }} | |
run: sudo bash ./upload-textfiles "/var/log/elasticsearch/*.log" | |
- name: Install roave/backward-compatibility-check. | |
run: composer require -W --dev roave/backward-compatibility-check --no-plugins | |
- name: Run roave/backward-compatibility-check. | |
run: vendor/bin/roave-backward-compatibility-check --format=github-actions |