/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
mollie
/
laravel-mollie
/
.github
/
workflows
/
/home/techb158/ileadtechnology.com/vendor/mollie/laravel-mollie/.github/workflows
mkdir
upload
Name
Size
Mode
Actions
php-cs-fixer.yml
512
0644
edit
dl
rm
tests.yml
928
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/mollie/laravel-mollie/.github/workflows/tests.yml
(928B)
name: tests on: push: pull_request: schedule: - cron: '0 0 * * *' jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: true matrix: php: [7.4, 8.0, 8.1] laravel: [^7.0, ^8.0] exclude: - php: 8.1 laravel: ^7.0 name: P${{ matrix.php }} - L${{ 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 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
Save
cmd:
run