Skip to content

JeffreyDavidson is check the project for lint #104

JeffreyDavidson is check the project for lint

JeffreyDavidson is check the project for lint #104

Workflow file for this run

name: Lint
run-name: ${{ github.actor }} is check the project for lint
on: [push]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup PHP
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: laravel/pint
- name: Check PHP syntax
uses: overtrue/phplint@8.2
with:
path: .
options: --exclude=*.log
- name: Check code style
run: pint --test