Skip to content

Remove MySQL database #1

Remove MySQL database

Remove MySQL database #1

Workflow file for this run

name: Analysis
on:
- push
jobs:
lint:
name: Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: phpstan, psalm
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Setup composer cache
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install composer dependencies
env:
COMPOSER_AUTH: >-

Check failure on line 27 in .github/workflows/analysis.yml

View workflow run for this annotation

GitHub Actions / Analysis

Invalid workflow file

The workflow is not valid. .github/workflows/analysis.yml (Line: 27, Col: 26): Unexpected symbol: '{"github-oauth":{"github'. Located at position 8 within expression: toJSON({"github-oauth":{"github.com": github.token },"http-basic":{"nova.laravel.com":{"username": secrets.LARAVEL_NOVA_USERNAME, "password": secrets.LARAVEL_NOVA_PASSWORD
${{ toJSON({"github-oauth":{"github.com": github.token },"http-basic":{"nova.laravel.com":{"username": secrets.LARAVEL_NOVA_USERNAME, "password": secrets.LARAVEL_NOVA_PASSWORD}}}) }}
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run Psalm
run: psalm
- name: Run PHPStan
run: phpstan analyze