Skip to content

optimize security made secureHash generate in back-end to skip use Ke… #35

optimize security made secureHash generate in back-end to skip use Ke…

optimize security made secureHash generate in back-end to skip use Ke… #35

Workflow file for this run

# GitHub Action for Testing Laravel Package
name: CI & Testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
laravel-ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ["8.1", "8.2"]
steps:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, fileinfo
coverage: xdebug #optional
- name: Checkout
uses: actions/checkout@v3
- name: Show php version
run: php -v
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Static Analysis via PHPStan
run: composer analyse
- name: Test via PHPUnit
run: composer test