Skip to content

Commit

Permalink
Better workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SRWieZ committed Oct 17, 2024
1 parent 04c92b6 commit 0dcc3ca
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,37 @@ jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ 8.2, 8.3, 8.4 ]
os: [ubuntu-latest]
php: [8.2, 8.3, 8.4]

name: Test with php ${{ matrix.php }} on ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ matrix.os }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: xdebug
# coverage: xdebug

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install Dependencies
run: composer install --dev --no-interaction --prefer-dist --optimize-autoloader
run: composer update --no-interaction --prefer-dist

- name: Run tests
run: ./vendor/bin/pest

0 comments on commit 0dcc3ca

Please sign in to comment.