Skip to content

support timezone in manifest and use when validating app-version #151

support timezone in manifest and use when validating app-version

support timezone in manifest and use when validating app-version #151

Workflow file for this run

name: Analyse
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [ opened, synchronize, reopened, ready_for_review ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyse:
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
env:
DB_DATABASE: testing
DB_USER: root
DB_PASSWORD: root
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: zip, sqlite3
coverage: none
- name: Install composer dependencies
run: composer install --no-cache --no-ansi --no-interaction --no-progress
- name: Code sniff
run: vendor/bin/pint --test
- name: Code analysis
run: vendor/bin/phpstan analyse --memory-limit=1G