Skip to content

docs: add example for tools calling #42

docs: add example for tools calling

docs: add example for tools calling #42

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
lint:
name: PHP Test
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: actions/checkout@v4
- name: test
run: make test