Skip to content

Commit

Permalink
Update GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Oct 23, 2023
1 parent 8a389ea commit cef4d4f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/php-cs-fixer.yml
@@ -1,6 +1,10 @@
name: PHP-CS-Fixer

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
run:
Expand All @@ -9,7 +13,7 @@ jobs:
name: PER

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/phpunit.yml
@@ -1,6 +1,10 @@
name: PHPUnit

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
run:
Expand All @@ -14,7 +18,7 @@ jobs:
name: PHP ${{ matrix.php }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down

0 comments on commit cef4d4f

Please sign in to comment.