mirror of
https://github.com/themsaid/ibis.git
synced 2025-03-14 02:19:37 +01:00
Merge pull request #5 from roberto-butti/feature/upgrade-php82
Feature/upgrade php82
This commit is contained in:
commit
e6cb3d1086
39
.github/workflows/ci.yml
vendored
39
.github/workflows/ci.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
operating-system: [ubuntu-latest]
|
||||
php-versions: [ '8.2','8.1' ]
|
||||
php-versions: [ '8.2' ]
|
||||
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
|
||||
steps:
|
||||
# This is required as this package does not support PHP 8 (yet)
|
||||
@ -36,3 +36,40 @@ jobs:
|
||||
|
||||
- name: Execute PHP CS Fixer review
|
||||
run: composer run csfix-review
|
||||
|
||||
check-ibis:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
operating-system: [ubuntu-latest]
|
||||
php-versions: [ '8.2','8.1', '8.0' ]
|
||||
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
|
||||
steps:
|
||||
# This is required as this package does not support PHP 8 (yet)
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Get Composer Cache Directory
|
||||
id: composer-cache
|
||||
run: |
|
||||
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
||||
- name: Use Composer Cache
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ${{ steps.composer-cache.outputs.dir }}
|
||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-composer-
|
||||
- name: Composer Install
|
||||
run: "composer update"
|
||||
|
||||
- name: test Ibis execution
|
||||
run: |
|
||||
mkdir export
|
||||
./ibis init
|
||||
./ibis build
|
||||
|
@ -19,8 +19,8 @@
|
||||
"ibis"
|
||||
],
|
||||
"require": {
|
||||
"illuminate/filesystem": "^7.0|^8.0|^9.0",
|
||||
"illuminate/support": "^7.0|^8.0|^9.0",
|
||||
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0",
|
||||
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
|
||||
"mpdf/mpdf": "^8.1",
|
||||
"spatie/commonmark-highlighter": "^2.1|^3.0",
|
||||
"symfony/console": "^4.2|^5.0|^6.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user