Skip to content

Add download count (#6) #49

Add download count (#6)

Add download count (#6) #49

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: Run tests
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
steps:
- name: Dump matrix context
env:
MATRIX_CONTEXT: ${{ toJSON(matrix) }}
run: echo "$MATRIX_CONTEXT"
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Select the composer version
run: |
composer --version
composer self-update
composer --version
- name: Validate composer.json
run: composer --verbose validate
- name: Install dependencies
run: composer --verbose install
- name: phpstan
run: composer phpstan
- name: Run tests
run: composer test
env:
COMPOSER_VERSION: ${{ matrix.composer }}
- name: Coveralls
if: matrix.php-version == 8.2
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
php vendor/bin/php-coveralls -v