Skip to content

Commit

Permalink
Attempt to fix Action
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy379 committed Sep 26, 2023
1 parent 8da4af9 commit 308dc8a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/php82.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,21 @@ on:
- "*"

jobs:
php82:
checks:
name: Check PHP 8.2
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
uses: php-actions/composer@v5
- name: Set up PHP 8.2
uses: shivammathur/setup-php@v2
with:
php_version: 8.2
args: --prefer-dist --ignore-platform-reqs
php-version: '8.2'

- name: Install Dependencies
run: composer install --prefer-dist --ignore-platform-reqs --no-interaction

- name: Check code styling
run: composer ecs-check
Expand Down

0 comments on commit 308dc8a

Please sign in to comment.