diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15012a35..b1433c3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,8 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} slug: phauthentic/authentication + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} validation: name: Coding Standard & Static Analysis diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 84c5a647..348021f2 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,6 +1,6 @@ build: nodes: - tests-php74: + tests-php80: environment: php: version: '8.0' @@ -15,7 +15,7 @@ build: coverage: file: 'coverage.xml' format: 'php-clover' - tests-php80: + tests-php83: environment: php: version: '8.3' @@ -35,9 +35,9 @@ build: override: - php-scrutinizer-run --enable-security-analysis - - command: './bin/phpcs' + command: './bin/phpcs --report=checkstyle --standard=phpcs.xml src/ tests/' - - command: './bin/phpstan' + command: './bin/phpstan -V && bin/phpstan --error-format=github' filter: excluded_paths: - 'tests/*'