Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Update RenderCommand.php #17

Update RenderCommand.php

Update RenderCommand.php #17

Workflow file for this run

name: Format
on:
push:
branches:
- "master"
paths:
- "app/**"
- "tests/**"
jobs:
format:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: "Install composer dependencies"
run: composer install
- name: "Format files with laravel pint."
run: ./vendor/bin/pint
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply formatting changes
branch: ${{ github.head_ref }}