Skip to content

Bump squizlabs/php_codesniffer from 3.7.2 to 3.10.3 #790

Bump squizlabs/php_codesniffer from 3.7.2 to 3.10.3

Bump squizlabs/php_codesniffer from 3.7.2 to 3.10.3 #790

Workflow file for this run

name: Tests
on: [push, pull_request,workflow_dispatch]
jobs:
arca-tests:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['8.3']
phpunit-versions: ['latest']
include:
- operating-system: 'ubuntu-latest'
php-versions: '8.3'
services:
mysql:
image: mysql:latest
env:
MYSQL_DATABASE: test_database
MYSQL_HOST: 127.0.0.1
MYSQL_USER: admin
MYSQL_PASSWORD: rootpass
MYSQL_ROOT_PASSWORD: rootpass
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Update Composer
run: sudo composer self-update --no-interaction
- name: Run Composer Install
run: composer install --no-interaction
- name: run tests
run: vendor/bin/pest --coverage-clover ./clover.xml
- name: run static analysis
run: vendor/bin/phpstan analyse src --level 8
- name: Upload to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}