Skip to content

commit changes

commit changes #13

Workflow file for this run

name: "Linter"
on: [pull_request]
jobs:
lint:
name: Linter
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Linter
env:
COMPOSER_ROOT_VERSION: dev-main
run: |
docker run --rm -v $PWD:/app -w /app -e COMPOSER_ROOT_VERSION=$COMPOSER_ROOT_VERSION composer:2.8 sh -c \
"git config --global --add safe.directory /app && composer install --profile --ignore-platform-reqs && composer lint"