lockfile again
This commit is contained in:
29
vendor/riverline/multipart-parser/.github/workflows/php.yml
vendored
Normal file
29
vendor/riverline/multipart-parser/.github/workflows/php.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
name: PHP
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
||||
name: PHP ${{ matrix.php-versions }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: composer
|
||||
- name: Install vendors
|
||||
run: composer install
|
||||
- name: Run tests
|
||||
run: vendor/bin/phpunit --bootstrap vendor/autoload.php tests
|
||||
Reference in New Issue
Block a user