Skip to content

Added tests and CI checks #2

Added tests and CI checks

Added tests and CI checks #2

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
php-cs-fixer:
name: CS Fixer
runs-on: ubuntu-latest
container:
image: ghcr.io/elbformat/php-cs-fixer:edge-php8.2
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: check src
run: php-cs-fixer fix --dry-run src
- name: check tests
run: php-cs-fixer fix --dry-run tests