/home/techb158/ileadtechnology.com/SSM/vendor/laravel/helpers/.github/workflows
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/helpers/.github/workflows/tests.yml (913B)
name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.1, 7.2, 7.3, 7.4]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-laravel-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-suggest
- name: Execute tests
run: vendor/bin/phpunit --verbose