Code uses: actions/checkout@v1 - name: Setup PHP uses: shivammathur/
[email protected] with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, pcntl, ... coverage: none - name: Install dependencies & Setup App run: make setup env: DB_PORT: ${{ job.services.mysql.ports[3306] }} - name: Run tests run: make test env: DB_PORT: ${{ job.services.mysql.ports[3306] }}