count() fix #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Integration tests | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Set up php 7.1 | |
#- name: Setup PHP with PECL extension | |
# uses: shivammathur/setup-php@v2 | |
# with: | |
# php-version: '7.1' | |
# tools: composer:v2 | |
# Install nodejs v14 | |
#- name: Install nodejs v14 | |
# run: | | |
# curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash - | |
# sudo apt-get install -y nodejs | |
# Check nodejs, npm, php version | |
#- name: Check versions | |
# run: | | |
# php -v | |
# node -v | |
# npm -v | |
# Install dependencies | |
#- name: Install dependencies | |
# run: | | |
# composer install | |
# npm install |