Skip to content

Instantly share code, notes, and snippets.

@lionslair
Created June 29, 2022 00:18
Show Gist options
  • Save lionslair/c63fa311324f950e15b27b41b27e46d6 to your computer and use it in GitHub Desktop.
Save lionslair/c63fa311324f950e15b27b41b27e46d6 to your computer and use it in GitHub Desktop.
laravel pint ci example
name: My workflow
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress
- name: Check code style
run: ./vendor/bin/pint --test --preset laravel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment