Skip to content

add: delete keys

add: delete keys #40

Workflow file for this run

name: Run test suite
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install Dependencies
run: composer install --no-progress --no-suggest
- name: Prepare Laravel Application
run: |
cp .env.example .env
php artisan key:generate
- name: Run Pest
run: php artisan test