Skip to content

chore(client): sync contracts metadata for v0.6.2 #16

chore(client): sync contracts metadata for v0.6.2

chore(client): sync contracts metadata for v0.6.2 #16

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
name: PHP ${{ matrix.php }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: ['8.2', '8.3', '8.4']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, hash, mbstring
coverage: none
- name: Validate composer.json
run: composer validate --strict
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run PHPUnit tests
run: composer test
- name: Run PHPStan
run: composer stan
- name: Run PHPCS
run: composer cs
- name: Run PHPMD
run: composer md