Skip to content

Commit 305b688

Browse files
committed
ci: Implement PHP linting GitHub workflow.
- 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
1 parent f0c6cc7 commit 305b688

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/lint.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: PHP Lint
2+
3+
on: [push]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- uses: echohello-dev/actions/php-lint@main
12+
with:
13+
who-to-greet: 'Mona the Octocat'

0 commit comments

Comments
 (0)