Skip to content

Commit

Permalink
[MERGE]: Develop branch into main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
asciito authored Oct 10, 2023
1 parent a80865e commit dfd9078
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 9,225 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Fix PHP code style issues
name: Fix PHP code style
run-name: fix-code-style

on:
push:
Expand All @@ -24,4 +25,4 @@ jobs:
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix styling
commit_message: "fix: style issues"
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHPStan
name: Run PHPStan

on:
push:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release Please

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: php
prerelease: true
18 changes: 4 additions & 14 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ on:

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1]
stability: [prefer-lowest, prefer-stable]
php: [8.1, 8.2]
runs-on: ${{ matrix.os }}

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
name: Running Package tests with PHP [${{ matrix.php }}] on OS [${{ matrix.os }}]

steps:
- name: Checkout code
Expand All @@ -29,17 +28,8 @@ jobs:
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none

- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer install --no-interaction --prefer-dist
- name: List Installed Dependencies
run: composer show -D
run: composer install --no-progress --no-interaction --prefer-dist

- name: Execute tests
run: vendor/bin/pest --ci
31 changes: 0 additions & 31 deletions .github/workflows/update-changelog.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
vendor/
.phpunit.result.cache
build/
composer.lock
Loading

0 comments on commit dfd9078

Please sign in to comment.