PHP Classes

File: .github/workflows/run-tests-pest.yml

Recommend this page to a friend!
  Classes of ángel cruz   PHP Instapago   .github/workflows/run-tests-pest.yml   Download  
File: .github/workflows/run-tests-pest.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Instapago
Process payments with the Instapago API
Author: By
Last change: adding some changes (#62)

* adding some changes :rocket: :rocket:
- drop php 8.1
- update validator
- other changes

* add more changes :D

* Fixed what needed fixing and squished some bugs. :bug:
Bump actions/checkout from 3 to 4 (#55)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: 1 month ago
Size: 1,157 bytes
 

Contents

Class file image Download
name: Tests on: [pull_request] jobs: test: runs-on: ${{ matrix.os }} timeout-minutes: 5 strategy: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] php: [8.2, 8.3, 8.4] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo coverage: none - name: Setup problem matchers run: | echo "::add-matcher::${{ runner.tool_cache }}/php.json" echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Install dependencies run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: List Installed Dependencies run: composer show -D - name: Execute tests run: vendor/bin/pest --ci