Fixing exception when Passport keys are stored in env vars #16
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: PHP 8.2 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
php80: | |
name: Check PHP 8.2 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
uses: php-actions/composer@v5 | |
with: | |
php_version: 8.2 | |
args: --prefer-dist --ignore-platform-reqs | |
- name: Check code styling | |
run: composer ecs-check | |
- name: Create keys | |
run: ./bin/create_keys | |
- name: Run unit and feature tests | |
run: composer test |