Skip to content

Merge pull request #11 from shopware/feat/dynamically-build-my-cnf #70

Merge pull request #11 from shopware/feat/dynamically-build-my-cnf

Merge pull request #11 from shopware/feat/dynamically-build-my-cnf #70

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
jobs:
mysql-variation:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
mysql:
- builtin
- mysql:8.1
- mariadb:11
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
mysql-version: ${{ matrix.mysql }}
install: 'true'
path: 'sw-test'
only-storefront:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
install: 'true'
installStorefront: 'true'
path: 'sw-test'
only-admin:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
install: 'true'
installAdmin: 'true'
path: 'sw-test'