Skip to content

Applied Php-cs-fixer #46

Applied Php-cs-fixer

Applied Php-cs-fixer #46

Workflow file for this run

name: CI Pipeline
on:
push:
pull_request:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Run PHPUnit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer, xdebug
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-progress --prefer-dist
- name: DEBUG
env:

Check failure on line 37 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / CI Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 37, Col: 13): Unexpected value '' .github/workflows/test.yml (Line: 39, Col: 9): Unexpected value 'NEO4J_USERNAME'
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME}}
run: 'echo "Address: NEO4J_USERNAME"'
- name: Run Tests without phpunit.xml
env:
NEO4J_ADDRESS: ${{ secrets.NEO4J_ADDRESS }},
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME}}
run: vendor/bin/phpunit --configuration phpunit.dist.xml