Skip to content

wip

wip #33

Workflow file for this run

---
name: CI
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
static:
name: Static Check
uses: kilip/gh-php-common/.github/workflows/static-check.yaml@main
with:
php_version: 8.3
commitlint: true
phpstan: true
phpcsfixer: true
secrets: inherit
testing:
needs: ["static"]
name: Testing
uses: kilip/gh-php-common/.github/workflows/testing.yaml@main
with:
pre_run: |
./bin/console --version
codecov: true
postgres: true
secrets: inherit
build:
needs: ["testing"]
name: Build
uses: kilip/gh-php-common/.github/workflows/build-image.yaml@main
secrets: inherit