Skip to content

Bump phpunit/phpunit from 10.5.2 to 10.5.11 #712

Bump phpunit/phpunit from 10.5.2 to 10.5.11

Bump phpunit/phpunit from 10.5.2 to 10.5.11 #712

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [ 8.1, 8.2 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
coverage: none
- name: Install Composer dependencies
run: composer install --prefer-dist --no-interaction
- name: Copy environment file
run: cp .env.example .env
- name: Generate app key
run: php artisan key:generate
- name: Execute tests
run: vendor/bin/phpunit --testdox