Skip to content

Commit

Permalink
create cs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomirons committed Sep 8, 2023
1 parent 2511ecc commit fdd1d82
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/CS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CS

on:
pull_request:

jobs:
tests:
runs-on: ubuntu-latest
name: Code Style
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: php /usr/bin/composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Verify
run: php vendor/bin/pint --test

0 comments on commit fdd1d82

Please sign in to comment.