Update README.md + GitHub configuration #104
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: "Dependencies" | |
on: [ "pull_request" ] | |
jobs: | |
security: | |
name: "Local PHP Security Checker (PHP ${{ matrix.php-versions }})" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-versions: [ '8.0', '8.1' ] | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Setup PHP, with composer and extensions" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-versions }}" | |
extensions: "mbstring, xml, ctype, iconv, intl, gd" | |
tools: "composer:v2" | |
- name: "Get composer cache directory" | |
id: "composer-cache" | |
run: 'echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT' | |
- name: "Cache composer dependencies" | |
uses: "actions/cache@v4" | |
with: | |
path: "${{ steps.composer-cache.outputs.dir }}" | |
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}" | |
restore-keys: "${{ runner.os }}-composer-" | |
- name: "Validate composer" | |
run: "composer validate" | |
- name: "Install all dependencies" | |
run: "make install" | |
- uses: "actions/cache@v4" | |
with: | |
path: "~/.cache/local-php-security-checker" | |
key: "local-php-security-checker-cache" | |
# Ensure our dependencies are fine | |
- name: "Local PHP Security Checker" | |
uses: "docker://pplotka/local-php-security-checker-github-actions:v1.0.0" | |
with: | |
cache_dir: "~/.cache/local-php-security-checker" | |
path: "./composer.lock" | |
- name: "Local PHP Security Checker - Module" | |
uses: "docker://pplotka/local-php-security-checker-github-actions:v1.0.0" | |
with: | |
cache_dir: "~/.cache/local-php-security-checker" | |
path: "./modules/btcpay/composer.lock" |