Skip to content

Commit

Permalink
COMPOSER_ROOT_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
alphp committed Jul 21, 2024
1 parent 9dd0ff6 commit bbcc964
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on: [push, pull_request]
permissions:
contents: read

env:
COMPOSER_ROOT_VERSION: dev-main

jobs:
build:

Expand All @@ -13,6 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Validate composer.json and composer.lock
uses: php-actions/composer@v6
with:
command: validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
Expand All @@ -27,10 +35,5 @@ jobs:
with:
args: --prefer-dist --no-progress

- name: Validate composer.json and composer.lock
uses: php-actions/composer@v6
with:
command: validate --strict

- name: Run test suite
uses: php-actions/phpunit@v4

0 comments on commit bbcc964

Please sign in to comment.