Skip to content

Commit

Permalink
Change the build a bit, fix the problem with lack of command name on …
Browse files Browse the repository at this point in the history
…symfony 7
  • Loading branch information
TheMilek committed Oct 16, 2024
1 parent f87b828 commit 9952887
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 21 deletions.
24 changes: 3 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.3"]
symfony: ["^6.4"]
php: ["8.2", "8.3"]
symfony: ["^6.4", "^7.1"]
sylius: ["2.0.x-dev"]
node: ["20.x"]
mysql: ["8.4"]
wkhtmltopdf: ["0.12.6-1"]
wkhtmltopdf: ["0.12.6-1", false]
state_machine_adapter: [ "winzou_state_machine", "symfony_workflow" ]

include:
-
php: "8.3"
symfony: "^6.4"
sylius: "2.0.x-dev"
node: "20.x"
mysql: "8.4"
wkhtmltopdf: false
state_machine_adapter: "symfony_workflow"
-
php: "8.3"
symfony: "^6.4"
sylius: "2.0.x-dev"
node: "20.x"
mysql: "8.4"
wkhtmltopdf: false
state_machine_adapter: "winzou_state_machine"

env:
APP_ENV: test
DATABASE_URL: "mysql://root:[email protected]/sylius?serverVersion=${{ matrix.mysql }}"
Expand Down
1 change: 1 addition & 0 deletions src/Cli/GenerateInvoicesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public function execute(InputInterface $input, OutputInterface $output): int

protected function configure(): void
{
$this->setName(self::$defaultName);
$this->setDescription('Generates invoices for orders placed before InvoicingPlugin installation');
}
}

0 comments on commit 9952887

Please sign in to comment.