Adding the magedin logo. #13
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: Magento 2 PHP Unit Tests | |
# Run this workflow every time a new commit pushed to your repository or pull requested is created. | |
on: [push, pull_request] | |
jobs: | |
# Set the job key. The key is displayed as the job name | |
# when a job name is not provided | |
unit-tests: | |
# Name the Job | |
name: Magento 2 Unit Tests | |
# Set the type of machine to run on | |
runs-on: ubuntu-latest | |
env: | |
MODULE_NAME: MagedIn_Frenet | |
COMPOSER_NAME: magedin/module-frenet | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Running Unit Tests over Magento 2.4.4-p9 | |
uses: extdn/github-actions-m2/magento-unit-tests/7.4@master | |
env: | |
MAGENTO_VERSION: '2.4.4-p9' | |
- name: Running Unit Tests over Magento 2.4.5-p8 | |
uses: extdn/github-actions-m2/magento-unit-tests/8.1@master | |
env: | |
MAGENTO_VERSION: '2.4.5-p8' | |
- name: Running Unit Tests over Magento 2.4.6-p6 | |
uses: extdn/github-actions-m2/magento-unit-tests/8.2@master | |
env: | |
MAGENTO_VERSION: '2.4.6-p6' | |
- name: Running Unit Tests over Magento 2.4.7-p1 | |
uses: extdn/github-actions-m2/magento-unit-tests/8.2@master | |
env: | |
MAGENTO_VERSION: '2.4.7-p1' |