From c24e34b0c158274ff2022f5e89c3d710eea9cad8 Mon Sep 17 00:00:00 2001 From: Fabiano Mallmann <25328512+fabiano-mallmann@users.noreply.github.com> Date: Tue, 16 Jan 2024 09:50:40 -0300 Subject: [PATCH] tests: test ci --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2448e4a6..b46a131e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,26 +76,25 @@ jobs: - name: Install Magento uses: php-actions/composer@v6 with: - command: "create-project --repository-url=https://repo.magento.com/ magento/project-community-edition:2.4.5 ." - container_workdir: app/magento + command: "create-project --repository-url=https://repo.magento.com/ magento/project-community-edition:2.4.5 magento" - name: Change minimum stable to Dev uses: php-actions/composer@v6 with: command: "config minimum-stability dev" - container_workdir: app/magento + working_dir: app/magento - name: Download Module uses: php-actions/composer@v6 with: command: require pagarme/pagarme-magento2-module:dev-${{ github.ref_name }} - container_workdir: app/magento + working_dir: app/magento - name: Download Mockery uses: php-actions/composer@v6 with: command: require mockery/mockery - container_workdir: app/magento + working_dir: app/magento - name: Run PHP Unit Tests run: ./vendor/bin/phpunit -c vendor/pagarme/pagarme-magento2-module/phpunit.xml