resolve set output deprecation #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
phpUnitTests: | |
strategy: | |
max-parallel: 4 | |
matrix: | |
operatingSystem: [ubuntu-22.04, windows-latest] | |
phpVersion: ['8.2'] | |
fail-fast: false | |
runs-on: ${{ matrix.operatingSystem }} | |
name: ${{ matrix.operatingSystem }} / PHP ${{ matrix.phpVersion }} | |
env: | |
extensions: curl, fileinfo, mongodb, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml | |
key: jikan-cache-v1 | |
steps: | |
- name: Checkout changes | |
uses: actions/checkout@v2 | |
- name: Setup extension cache | |
id: extcache | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ matrix.phpVersion }} | |
extensions: ${{ env.extensions }} | |
key: ${{ env.key }} | |
- name: Cache extensions | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.extcache.outputs.dir }} | |
key: ${{ steps.extcache.outputs.key }} | |
restore-keys: ${{ steps.extcache.outputs.key }} | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.phpVersion }} | |
tools: composer:v2 | |
extensions: ${{ env.extensions }} | |
- name: Setup dependency cache (Linux) | |
if: matrix.operatingSystem == 'ubuntu-22.04' | |
id: composercache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Setup dependency cache (Windows) | |
if: matrix.operatingSystem == 'windows-latest' | |
id: composercachewin | |
run: echo "dir=$(composer config cache-files-dir)" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
id: cache | |
with: | |
path: ${{ steps.composercache.outputs.dir }}${{ steps.composercachewin.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer dependencies | |
run: composer install --no-interaction --no-progress --no-suggest --no-scripts | |
- name: Run tests | |
env: | |
CI_ENV: true | |
run: ./vendor/bin/phpunit | |