Skip to content

Fixing workflow

Fixing workflow #2

Workflow file for this run

name: CI
on: [ push ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Composer install --dev
uses: php-actions/composer@v6
- name: PHP Code Sniffer
uses: php-actions/phpcs@v1
with:
php_version: 8.1
standard: PSR12