Skip to content

Add configurable issuer setting for JWT validation #286

Add configurable issuer setting for JWT validation

Add configurable issuer setting for JWT validation #286

Workflow file for this run

name: PR Unit Testing
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Triggers the workflow on pull request events
pull_request:
branches:
- develop
env:
ACTION_VERSION: 3
jobs:
pr_unit_testing:
runs-on: ubuntu-latest
name: 'Unit Test PR in Latest Stable Requirements'
steps:
- name: Checkout Code
# https://github.com/marketplace/actions/checkout
uses: actions/checkout@v6
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10
- name: Start Docker Environment
run: docker compose up -d
- name: Run PHPUnit Tests
run: docker compose exec app /bin/bash -c 'composer install && composer phpunit'
- name: Shutdown Docker Environment
if: success() || failure()
run: docker compose down
- name: Generate Coverage Report
if: success() && ${{ github.event_name == 'pull_request' }}

Check warning on line 41 in .github/workflows/pr-unit-testing.yml

View workflow run for this annotation

GitHub Actions / PR Unit Testing

Workflow syntax warning

.github/workflows/pr-unit-testing.yml (Line: 41, Col: 11): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
# https://github.com/marketplace/actions/coverage-report-as-comment-clover
uses: lucassabreu/comment-coverage-clover@main
with:
file: clover.xml