Update CHANGELOG.md #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI for Ibis | |
on: [push, pull_request] | |
jobs: | |
check-ibis: | |
runs-on: ${{ matrix.operating-system}} | |
strategy: | |
matrix: | |
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-14'] | |
php-versions: [ '8.4', '8.3', '8.2' ] | |
name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}} | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: gd | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Composer Install | |
run: "composer update --no-dev" | |
- name: test Ibis Next execution | |
run: | | |
mkdir export | |
./ibis-next init | |
./ibis-next pdf | |
./ibis-next epub | |
./ibis-next html |