Skip to content

Commit

Permalink
ci/cd: fix commands on pint action
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Leite committed May 15, 2024
1 parent 0adf1c2 commit c259fea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: "8.1"
php-version: "8.3"
- uses: actions/checkout@v3
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist --ignore-platform-reqs
- name: Launch Pint inspection
run: vendor/bin/pint

Expand Down

0 comments on commit c259fea

Please sign in to comment.