Skip to content

Don't connect to mysqli if no scanner DB #788

Don't connect to mysqli if no scanner DB

Don't connect to mysqli if no scanner DB #788

Workflow file for this run

name: PHP Composer
on:
push:
pull_request:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "7.4"
- "8.0"
name: PHP ${{ matrix.php-versions }} test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: composer
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: composer test