docs: updated readme #10
Workflow file for this run
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: branch | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
security: | |
permissions: | |
contents: read | |
checks: read | |
statuses: read | |
security-events: write | |
uses: affinidi/pipeline-security/.github/workflows/security-scanners.yml@main | |
with: | |
config-path: .github/labeler.yml | |
secrets: inherit | |
validate-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Validate dependencies | |
uses: php-actions/composer@master | |
with: | |
command: validate | |
- name: Install dependencies | |
uses: php-actions/composer@v6 | |
- name: Lint PHP files | |
uses: overtrue/phplint@main | |
with: | |
path: . | |
options: --exclude=vendor | |
- name: Cache testing env file | |
uses: actions/cache@v4 | |
id: testing-env-cache | |
with: | |
path: tests/Helpers/.env | |
key: ${{ runner.os }}-testing-env-${{ hashFiles('tests/Helpers/.env') }} | |
- if: ${{ steps.testing-env-cache.outputs.cache-hit != 'true' }} | |
name: Prepare environment file | |
env: | |
TESTING_ENV_FILE_CONTENT: ${{ secrets.TESTING_ENV_FILE_CONTENT }} | |
run: echo $TESTING_ENV_FILE_CONTENT | base64 --decode > tests/Helpers/.env | |
- uses: php-actions/phpstan@v3 | |
with: | |
path: src/AuthProvider src/Common | |
level: 5 | |
memory_limit: 2048m | |
- name: Integration tests | |
run: composer run-script test |