Created
June 29, 2022 00:18
-
-
Save lionslair/c63fa311324f950e15b27b41b27e46d6 to your computer and use it in GitHub Desktop.
laravel pint ci example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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