Skip to content

Commit 59d6e24

Browse files
committed
update: pint github workflow
1 parent c8b2fa6 commit 59d6e24

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

.github/workflows/pint.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,21 @@ jobs:
1515
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
18-
- name: Run Pint
19-
uses: aglipanci/[email protected]
18+
- name: Setup PHP 8.3
19+
uses: shivammathur/setup-php@v2
2020
with:
21-
preset: psr12
22-
verboseMode: true
21+
php-version: ${{ matrix.php-version }}
22+
coverage: none
23+
- name: Install Composer Dependencies
24+
env:
25+
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
26+
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
27+
- name: Run Pint
28+
run: ./vendor/bin/pint -vvv
2329
- name: Commit Changes
2430
uses: stefanzweifel/git-auto-commit-action@v4
2531
with:
26-
commit_message: PHP Style Change (Laravel Pint CI)
27-
commit_user_name: HDVinne
32+
commit_message: 'chore: pint linter'
33+
commit_user_name: HDVinnie
2834
commit_user_email: [email protected]
2935
commit_author: HDVinnie <[email protected]>

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,12 @@
99

1010
**Laravel Polar API** is a Laravel package that provides an API wrapper for [polar.sh](Ihttps://polar.sh) API. This package simplifies the process of interacting with the Polar API by providing a set of convenient methods and classes.
1111

12-
## Note
13-
14-
This package is still under development and should not be used in production environments.
15-
1612
## Installation
1713

1814
To install the package, you can use Composer:
1915

2016
```sh
21-
composer require hdinnovations/laravel-polar-api:v1.0.0-beta
17+
composer require hdinnovations/laravel-polar-api
2218
```
2319

2420
## Configuration

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"homepage": "https://github.com/hdinnovations/laravel-polar-api",
99
"license": "MIT",
1010
"type": "library",
11-
"version": "v1.0.0-beta",
11+
"version": "v1.0.0",
1212
"authors": [
1313
{
1414
"name": "HDVinnie",

0 commit comments

Comments
 (0)