Skip to content

fix/main: fix cs

fix/main: fix cs #12

Workflow file for this run

name: tests
on: [push]
jobs:
test:
name: PHPUnit
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: setup enviroment
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install dependencies
run: composer install
- name: Generate key
run: php artisan key:generate
- name: Clear Config
run: php artisan config:clear
- name: Laravel PHPUnit
run: php artisan test --coverage-clover ./coverage.xml
- name: Upload coverage reports to Codacy
uses: codacy/codacy-coverage-reporter-action@v1

Check failure on line 34 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./coverage.xml