Skip to content

Remove static versioning in composer.json #7

Remove static versioning in composer.json

Remove static versioning in composer.json #7

Workflow file for this run

name: Run Test
on:
push:
branches:
- '*'
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
coverage: xdebug
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Execute tests
env:
XDEBUG_MODE: coverage
run: vendor/bin/phpunit