Skip to content

Commit

Permalink
Update actions in tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kdambekalns authored Dec 11, 2024
1 parent d6674ea commit ee629a8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,24 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.0', '8.2']
php-versions: ['8.1', '8.3']
flow-versions: ['8.0', '8.3', '9.0']
dependencies: ['highest']
exclude:
# excludes Flow 9 on PHP 8.0
- php-versions: 8.0
flow-versions: 9.0

defaults:
run:
working-directory: ${{ env.FLOW_FOLDER }}

steps:
- name: Checkout Flow development distribution
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: neos/flow-development-distribution
ref: ${{ matrix.flow-versions }}
path: ${{ env.FLOW_FOLDER }}

- name: Checkout package
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: ${{ env.PACKAGE_FOLDER}}/${{ env.PACKAGE_NAME }}

Expand All @@ -55,7 +51,7 @@ jobs:
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down

0 comments on commit ee629a8

Please sign in to comment.