Skip to content

Merge pull request #2 from VincentLanglet/VincentLanglet-patch-1 #11

Merge pull request #2 from VincentLanglet/VincentLanglet-patch-1

Merge pull request #2 from VincentLanglet/VincentLanglet-patch-1 #11

Workflow file for this run

name: PHP test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
php-version: [7.4, 8.0, 8.1]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: zip, curl
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-php-${{ matrix.php-version }}-
- name: Install dependencies
run: |
composer install --prefer-dist
- name: Unit tests
run: |
composer run-script test