Skip to content

Commit

Permalink
build: automatically run Pest
Browse files Browse the repository at this point in the history
  • Loading branch information
Yogarine committed Feb 8, 2025
1 parent 199dae0 commit c276412
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run PHP CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
strategy:
matrix:
php-version: [ 8.1, 8.2, 8.3, 8.4 ]
runs-on: ubuntu-latest
steps:
- name: Publish PHPDoc
uses: empaphy/dev/actions/pest@v1
with:
php-version: ${{ matrix.php-version }}

0 comments on commit c276412

Please sign in to comment.