Skip to content

Merge pull request #11 from codelicia/renovate/actions-checkout-4.x #33

Merge pull request #11 from codelicia/renovate/actions-checkout-4.x

Merge pull request #11 from codelicia/renovate/actions-checkout-4.x #33

Workflow file for this run

name: Run CI
on: [push]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.2']
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install
- name: Run tests
run: composer run test
- name: Run Qodana
uses: JetBrains/[email protected]