Skip to content

Commit

Permalink
move auto-review to SCA
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 3, 2023
1 parent 38b067a commit 397af8d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,14 @@ jobs:

- operating-system: 'ubuntu-20.04'
php-version: '8.2'
job-description: 'tests with migration rules'
run-tests: 'yes'
run-migration-rules: 'yes' # should be checked on the highest supported PHP version

- operating-system: 'ubuntu-20.04'
php-version: '8.2'
job-description: 'auto-review'
job-description: 'tests'
run-tests: 'yes'
phpunit-flags: '--group auto-review'

- operating-system: 'ubuntu-20.04'
php-version: '8.2'
job-description: 'tests'
job-description: 'tests with migration rules'
run-tests: 'yes'
run-migration-rules: 'yes' # should be checked on the highest supported PHP version

- operating-system: 'ubuntu-20.04'
php-version: '8.2'
Expand Down Expand Up @@ -190,7 +184,7 @@ jobs:
env:
PHP_CS_FIXER_IGNORE_ENV: ${{ matrix.PHP_CS_FIXER_IGNORE_ENV }}
FAST_LINT_TEST_CASES: ${{ matrix.FAST_LINT_TEST_CASES }}
run: vendor/bin/paraunit run ${{ matrix.phpunit-flags || '--exclude-group auto-review' }}
run: vendor/bin/paraunit run --exclude-group auto-review

- name: Collect code coverage
if: matrix.collect-code-coverage == 'yes'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
retry_wait_seconds: 30
command: ./dev-tools/install.sh

- name: Run tests
env:
FAST_LINT_TEST_CASES: 1
run: vendor/bin/paraunit run --group auto-review

- name: Check - file permissions
run: ./dev-tools/check_file_permissions.sh

Expand Down

0 comments on commit 397af8d

Please sign in to comment.