Skip to content

Reuse Aqua workflow from alma/actions #35

Reuse Aqua workflow from alma/actions

Reuse Aqua workflow from alma/actions #35

Workflow file for this run

name: PHP Composer
on:
push:
branches: [main,develop]
pull_request:
branches: [main,develop]
workflow_dispatch: ~
jobs:
lint:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest