cakephp-two-factor-auth icon indicating copy to clipboard operation
cakephp-two-factor-auth copied to clipboard

Added actions

Open mirko-pagliai opened this issue 6 months ago • 2 comments

Actions are completely optional. But, I dare say, for such an important plugin, which determines the authentication processes, they are equally important.

This, of course, can peacefully lead to Travis's dismissal.

mirko-pagliai avatar Oct 14 '25 18:10 mirko-pagliai

See https://github.com/mirko-pagliai/cakephp-two-factor-auth/actions/runs/18506759381

mirko-pagliai avatar Oct 14 '25 19:10 mirko-pagliai

Obviously this is also expected to break Codecov.

      - name: Run test suite
        if: matrix.real-drivers == ''
        run: |
          if [[ ${{ matrix.dependencies }} == 'highest' ]]; then
            export XDEBUG_MODE=coverage;
            vendor/bin/phpunit --display-skipped --display-deprecations --display-warnings --coverage-clover=coverage.xml
          else
            vendor/bin/phpunit --display-deprecations --display-warnings
          fi

and

      - name: Code Coverage Report
        if: success() && matrix.dependencies == 'highest'
        uses: codecov/codecov-action@v5
        with:
          token: ${{ secrets.CODECOV_TOKEN }}
          slug: andrej-griniuk/cakephp-two-factor-auth

https://docs.codecov.com/docs/codecov-tokens

mirko-pagliai avatar Oct 14 '25 20:10 mirko-pagliai