Skip to content

Installation Test

Installation Test #32

Workflow file for this run

name: Installation Test
on:
workflow_dispatch: {}
schedule:
- cron: 0 12 10 * *
push:
branches:
- master
paths-ignore:
- "docs/**"
- package.json
- package-lock.json
- "*.md"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
- package.json
- package-lock.json
jobs:
compute_matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.supported-version.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@main
id: supported-version
- run: echo ${{ steps.supported-version.outputs.matrix }}
install-test:
needs: compute_matrix
strategy:
matrix: ${{ fromJSON(needs.compute_matrix.outputs.matrix) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: graycoreio/github-actions-magento2/installation-test@main
with:
composer_version: ${{ matrix.composer }}
php_version: ${{ matrix.php }}
magento_version: ${{ matrix.magento }}
composer_auth: ${{ secrets.COMPOSER_AUTH }}
package_name: graycore/magento2-cors
source_folder: $GITHUB_WORKSPACE