SUPESC-781 Fixed duplicated preauthorisation calls. #353
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: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
env: | ||
SPRYKER_TESTING_ENABLED: 1 | ||
APPLICATION_STORE: DE | ||
POSTGRES_PORT: 5433 | ||
DB_USER: postgres | ||
DB_NAME: DE_test_zed | ||
DB_PASSWORD: pwd | ||
MODULE_DIR: module | ||
SHOP_DIR: current | ||
MODULE_NAME: payone | ||
jobs: | ||
test_pgsql: | ||
name: "Test / PostgreSQL" | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [ '8.0', '8.1'] | ||
ruby: 2.6 | ||
product: [ 'suite' ] | ||
composer_preference: ['', '--prefer-lowest'] | ||
services: | ||
rabbitmq: | ||
image: rabbitmq | ||
ports: | ||
- 5672:5672 | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
postgres: | ||
image: postgres:12 | ||
env: | ||
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }} | ||
DB_USER: ${{ env.DB_USER }} | ||
DB_NAME: ${{ env.DB_NAME }} | ||
ports: | ||
- 5433:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
env: | ||
PRODUCT_NAME: ${{ matrix.product }} | ||
APPLICATION_ENV: ci.pgsql | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: mbstring, intl | ||
tools: composer:v2 | ||
- name: 'Run Elasticsearch' | ||
uses: elastic/elastic-github-actions/elasticsearch@master | ||
with: | ||
stack-version: 7.6.0 | ||
- name: Install eco-ci | ||
run: git clone https://github.com/spryker-eco/eco-ci.git ecoci | ||
- name: Execute test script | ||
run: ./ecoci/build/ga.sh ${{ matrix.composer_preference }} | ||
test_mariadb: | ||
name: "Test / MariaDB" | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [ '8.0', '8.1'] | ||
ruby: 2.6 | ||
product: [ 'suite' ] | ||
composer_preference: [ '', '--prefer-lowest' ] | ||
services: | ||
rabbitmq: | ||
image: rabbitmq | ||
ports: | ||
- 5672:5672 | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
env: | ||
PRODUCT_NAME: ${{ matrix.product }} | ||
APPLICATION_ENV: ci.mysql | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: getong/[email protected] | ||
with: | ||
character set server: 'utf8' | ||
collation server: 'utf8_general_ci' | ||
mariadb version: '10.3' | ||
mysql database: ${{ env.DB_NAME }} | ||
mysql root password: ${{ env.DB_PASSWORD }} | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: mbstring, intl | ||
tools: composer:v2 | ||
- name: 'Run Elasticsearch' | ||
uses: elastic/elastic-github-actions/elasticsearch@master | ||
with: | ||
stack-version: 7.6.0 | ||
- name: Install eco-ci | ||
run: git clone https://github.com/spryker-eco/eco-ci.git ecoci | ||
- name: Execute test script | ||
run: ./ecoci/build/ga.sh ${{ matrix.composer_preference }} |