feat: add Installation Test Action (#1)

This commit is contained in:
Damien Retzinger
2022-06-25 12:14:49 -04:00
committed by GitHub
parent a6400eb9ec
commit 4bc0854cfc
9 changed files with 246 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
name: Installation Test
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- README.md
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
- README.md
jobs:
install-test:
strategy:
matrix:
magento:
- magento/project-community-edition:>=2.3 <2.4
- magento/project-community-edition:>=2.4.0 <2.4.1
- magento/project-community-edition:>=2.4.1 <2.4.2
- magento/project-community-edition:>=2.4.2 <2.4.3
- magento/project-community-edition:>=2.4.3 <2.4.4
- magento/project-community-edition:>=2.4.4 <2.4.5
- magento/project-community-edition
include:
- magento: magento/project-community-edition:>=2.3 <2.4
php_version: 7.4
composer_version: 1
- magento: magento/project-community-edition:>=2.4.0 <2.4.1
php_version: 7.4
composer_version: 1
- magento: magento/project-community-edition:>=2.4.1 <2.4.2
php_version: 7.4
composer_version: 1
- magento: magento/project-community-edition:>=2.4.2 <2.4.3
php_version: 7.4
composer_version: 2
- magento: magento/project-community-edition:>=2.4.3 <2.4.4
php_version: 7.4
composer_version: 2
- magento: magento/project-community-edition:>=2.4.4 <2.4.5
php_version: 8.1
composer_version: 2
- magento: magento/project-community-edition
composer_version: 2
php_version: 8.1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./installation-test
with:
composer_version: ${{ matrix.composer_version }}
php_version: ${{ matrix.php_version }}
magento_version: ${{ matrix.magento }}
composer_auth: ${{ secrets.COMPOSER_AUTH }}
package_name: graycore/magento2-demo-package
source_folder: $GITHUB_WORKSPACE/_test/demo-package