Skip to content

Update magento 2 installation php version note #378

Update magento 2 installation php version note

Update magento 2 installation php version note #378

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements/base.txt
pip install tox tox-gh-actions
- name: Check markdown format
run: mdformat --check docs/
- name: Test with tox
run: tox