Skip to content

Update Foo.php

Update Foo.php #90

Workflow file for this run

name: phpunit
on: [ push ]
permissions: read-all
jobs:
laravel:
runs-on: ubuntu-latest
name: PHP Unit
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.COMPOSER_TOKEN }}
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist --no-progress --no-interaction
- name: Execute tests
run: sudo vendor/bin/phpunit --colors=always