Sharding & Rebalancing MVP implementation #773
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: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Run unit tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run tests inside docker container | |
uses: manticoresoftware/addnab-docker-run-action@v3 | |
with: | |
image: manticoresearch/manticore-executor-kit:latest | |
options: -v ${{ github.workspace }}:/workdir --cap-add SYS_ADMIN --security-opt apparmor=unconfined | |
run: | | |
# the entrypoint is rewritten so we need to launch searchd manually | |
searchd | |
cd /workdir | |
composer install --prefer-dist | |
git clone https://github.com/manticoresoftware/phar_builder.git | |
bin/test | |
codestyle: | |
name: PHPCS validation | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run PHPCS to check following the standard | |
uses: manticoresoftware/addnab-docker-run-action@v3 | |
with: | |
image: manticoresearch/manticore-executor-kit:latest | |
options: -v ${{ github.workspace }}:/workdir | |
run: | | |
cd /workdir | |
composer install --prefer-dist | |
bin/codestyle | |
codeanalyze: | |
name: PHPStan static analysis | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run PHPStan to analyze the codebase | |
uses: manticoresoftware/addnab-docker-run-action@v3 | |
with: | |
image: manticoresearch/manticore-executor-kit:latest | |
options: -v ${{ github.workspace }}:/workdir | |
run: | | |
cd /workdir | |
composer install --prefer-dist | |
bin/codeanalyze |