Added legacy transformation, currently no tests for new JWT structure #395
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: | |
- ubuntu-latest | |
strategy: | |
matrix: | |
php: ['8.1', '8.2', '8.3'] | |
steps: | |
- name: Configure Git | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
git config --system core.autocrlf false | |
git config --ystem core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: json | |
tools: composer | |
coverage: xdebug | |
- name: Get Composer cache directory | |
id: composercache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --no-interaction --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }} | |
- name: Analyze & test | |
run: | | |
vendor/bin/phpunit -v --configuration ./phpunit.xml.dist --coverage-clover=coverage.xml | |
- name: Run codecov | |
uses: codecov/codecov-action@v1 |