Skip to content

Commit

Permalink
[CVFV-63] updated github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
arslanim committed May 7, 2023
1 parent 3973cd9 commit 3f678fe
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,27 @@ jobs:
run-phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: PHPCS analyze
run: ./vendor/bin/phpcs -p -s --standard=phpcs.xml src tests
run-php-stan:
needs: run-phpcs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: PHPStan Static Analysis source code
uses: php-actions/phpstan@v3
with:
version: 1.10.14
configuration: ./phpstan.neon.dist
run-php-unit-tests:
needs: run-php-stan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- uses: php-actions/phpunit@v3
with:
version: 9.5.28
Expand All @@ -36,8 +37,8 @@ jobs:
needs: run-php-unit-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: Run PHPUnit Tests
uses: php-actions/phpunit@v3
with:
Expand Down

0 comments on commit 3f678fe

Please sign in to comment.