Skip to content

feat: update the SDK to use the latest changes in the Extism runtime #16

feat: update the SDK to use the latest changes in the Extism runtime

feat: update the SDK to use the latest changes in the Extism runtime #16

Workflow file for this run

name: PHP CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
php:
name: PHP Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
rust:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v3
- uses: ./.github/actions/libextism
- name: Setup PHP env
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
extensions: ffi
tools: composer
env:
fail-fast: true
- name: Test PHP SDK
run: |
cd example
composer install
./vendor/bin/phpunit tests