Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Jun 8, 2024
1 parent b1390b4 commit 074f9fd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}

Expand All @@ -35,10 +35,10 @@ jobs:
php-version: 8.2

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Check source code for syntax errors
run: vendor/bin/parallel-lint --exclude .git --exclude vendor .
Expand All @@ -55,10 +55,10 @@ jobs:
php-version: latest

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Check source code for code style errors
run: PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --verbose --diff --dry-run
Expand All @@ -70,7 +70,7 @@ jobs:
# - php_syntax_errors
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# uses: actions/checkout@v4

# - name: Setup PHP
# uses: shivammathur/setup-php@v2
Expand All @@ -80,7 +80,7 @@ jobs:
# tools: phpstan

# - name: Install Composer dependencies
# uses: ramsey/composer-install@v2
# uses: ramsey/composer-install@v3

# - name: Run PHPStan
# run: vendor/bin/phpstan analyze
Expand All @@ -106,7 +106,7 @@ jobs:

# Checks out a copy of your repository on the ubuntu machine
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4


- name: Setup PHP Action
Expand All @@ -118,7 +118,7 @@ jobs:
tools: pecl, composer

- name: Install Composer dependencies
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Run tests
run: composer run-tests

0 comments on commit 074f9fd

Please sign in to comment.