Skip to content

Add solution for "The default website isn't defined. Set the website and try again." in Magento deployments #874

Add solution for "The default website isn't defined. Set the website and try again." in Magento deployments

Add solution for "The default website isn't defined. Set the website and try again." in Magento deployments #874

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
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