Skip to content

Use Saloon PHP on top of Core API #3

Use Saloon PHP on top of Core API

Use Saloon PHP on top of Core API #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PHPUnit
run: composer test
- name: Run PHPStan
run: composer phpstan