Skip to content

Remove plausible once again #82

Remove plausible once again

Remove plausible once again #82

Workflow file for this run

name: "QA Action"
on:
push:
branches:
- "master"
- "develop"
jobs:
testing:
name: "Run PHP-CS-Fixer, PHPUnit and PHPStan"
runs-on: ubuntu-22.04
steps:
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
tools: composer:v2
ini-values: "memory_limit=-1"
env:
fail-fast: true
- name: "Checkout Project"
uses: actions/checkout@v3
- name: "Install Dependencies"
run: composer install
- name: "Run Full Testsuite"
run: composer test