Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Sep 14, 2024
1 parent 488d3ea commit 552003e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os:
- "ubuntu-latest"
php:
- 8.2
- 8.3
experimental:
- false

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
os:
- "ubuntu-latest"
php:
- '8.0'
- 8.1
- 8.2
- 8.3
Expand Down
47 changes: 0 additions & 47 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,50 +98,3 @@ jobs:

- name: Execute tests
run: vendor/bin/phpunit --testdox

tests-on-laravel-9:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- '8.0'
- 8.1
- 8.2
dependencies:
- "highest"
laravel:
- "9.x"
experimental:
- false

name: Laravel ${{ matrix.laravel }} on PHP${{ matrix.php }}-${{ matrix.os }} (${{ matrix.dependencies }})

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, bcmath, fileinfo
coverage: none

- name: "Setup CI Authentication"
run: |
composer config http-basic.nova.laravel.com ${{ secrets.NOVA_USERNAME }} ${{ secrets.NOVA_PASSWORD }}
- name: Install dependencies
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist --no-cache --with=laravel/framework:${{ matrix.laravel }}"

- name: Installed dependencies
run: composer show -D

- name: Execute tests
run: vendor/bin/phpunit --testdox
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,22 @@
}
},
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.1",
"composer-runtime-api": "^2.2",
"illuminate/support": "^8.83.4 || ^9.51 || ^10.0 || ^11.0",
"laravie/serialize-queries": "^2.0 || ^3.0",
"illuminate/support": "^10.34 || ^11.0",
"laravie/serialize-queries": "^3.0",
"laravel/serializable-closure": "^1.0",
"symfony/polyfill-php83": "^1.28"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"larastan/larastan": "^2.4",
"laravel/nova": "*",
"nova-kit/nova-devtool": "^1.3",
"orchestra/testbench": "^7.40 || ^8.21 || ^9.0",
"phpunit/phpunit": "^9.6 || ^10.1"
"laravel/nova": "^4.35",
"laravel/nova-devtool": "^1.0",
"laravel/pint": "^1.17",
"orchestra/testbench": "^8.20 || ^9.0",
"phpstan/phpstan": "^1.11",
"orchestra/pest-plugin-testbench": "^2.0"
},
"repositories": [
{
Expand Down

0 comments on commit 552003e

Please sign in to comment.