Skip to content

Merge pull request #3 from Apiboard/feature/add-json-pointer-context-… #32

Merge pull request #3 from Apiboard/feature/add-json-pointer-context-…

Merge pull request #3 from Apiboard/feature/add-json-pointer-context-… #32

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
name: PHP-${{ matrix.php }}
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run code style checker
run: vendor/bin/pint --test
- name: Run test suite
run: vendor/bin/pest --ci