mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
# Magento 2 Supported Versions
|
|
|
|
A Github Action that computes the currently supported Github Actions Matrix for Magento 2 Versions
|
|
|
|
All data comes from:
|
|
|
|
- [v2.3](https://github.com/magento/devdocs/blob/master/src/_data/codebase/v2_3/system-requirements.yml)
|
|
- [v2.4](https://github.com/magento/devdocs/blob/master/src/_data/codebase/v2_4/system-requirements.yml)
|
|
|
|
## Usage
|
|
|
|
```yml
|
|
name: Use Supported Versions
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
compute_matrix:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.supported-version.outputs.matrix }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- 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
|
|
- run: echo ${{ matrix.magento }} ${{ matrix.os }} ${{ matrix.php }}
|
|
shell: bash
|
|
```
|