diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f62c667..2625e9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,17 +38,17 @@ jobs: restore-keys: ${{ runner.os }}-composer- - name: Install - run: composer install --prefer-dist - - # —— QA ✔️‍️ ——————————————————————————————————————————————————————————————— - - name: Qualimetry - run: make qa + run: make install # —— Tests 🧪 ———————————————————————————————————————————————————————————— - name: Phpunit tests - run: XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml + run: make coverage env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + # —— QA ✔️‍️ ——————————————————————————————————————————————————————————————— + - name: Qualimetry + run: make qa + - name: "Upload coverage to Codecov" uses: codecov/codecov-action@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cc0197..0ec5c6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ CHANGELOG for 1.x - Changes config of phpcs, phpstan and phpunit - Comment base test because it doesn't work with the new `smartbooster/standard-bundle` implementation - Fix some style because of the new `smartbooster/standard-bundle` implementation +- Change action phpunit and qa order and use make ## v1.5.0 - (2024-01-04)