Skip to content

Bump livewire/livewire from 3.1.0 to 3.5.2 #97

Bump livewire/livewire from 3.1.0 to 3.5.2

Bump livewire/livewire from 3.1.0 to 3.5.2 #97

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
php: ['8.1']
laravel: [9]
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, bcmath
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
run: |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
env:
PAYFAST_MERCHANT_ID: ${{ secrets.PAYFAST_MERCHANT_ID }}
PAYFAST_MERCHANT_KEY: ${{ secrets.PAYFAST_MERCHANT_KEY }}
PAYFAST_PASSPHRASE: ${{ secrets.PAYFAST_PASSPHRASE }}
PAYFAST_TEST_MODE: ${{ secrets.PAYFAST_TEST_MODE }}