Skip to content

chore: remove php constraints #23

chore: remove php constraints

chore: remove php constraints #23

Workflow file for this run

name: "[PHP 7.3] Run tests"
on:
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.3"
tools: composer
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist
- name: Run tests
run: ./vendor/bin/phpunit
- name: Coveralls
run: ./vendor/bin/php-coveralls -v
env:
COVERALLS_RUN_LOCALLY: 1
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}