Skip to content

Commit

Permalink
ci: Implement PHP linting GitHub workflow.
Browse files Browse the repository at this point in the history
- Add GitHub workflow file for PHP linting
- Configure workflow to run lint check on push to main branch
- Ensure linting process runs smoothly and notifies of any errors
  • Loading branch information
johnnyhuy committed Jul 28, 2024
1 parent f0c6cc7 commit 305b688
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: PHP Lint

on: [push]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: echohello-dev/actions/php-lint@main
with:
who-to-greet: 'Mona the Octocat'

0 comments on commit 305b688

Please sign in to comment.