Skip to content

feat: add casting for arguments #20

feat: add casting for arguments

feat: add casting for arguments #20

Workflow file for this run

name: Format
on:
push:
branches:
- "master"
paths:
- "src/**"
- "tests/**"
jobs:
format:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@master
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 }}