Skip to content

fix git workflow

fix git workflow #3

Workflow file for this run

name: Testing
on:
push:
branches: [ "main", "2-add-laravel-events" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test-php-8-2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Execute tests
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php vendor/bin/testbench package:test