Skip to content

CICD 46 Add Code Formatter And CI/CD #217

CICD 46 Add Code Formatter And CI/CD

CICD 46 Add Code Formatter And CI/CD #217

Workflow file for this run

name: "Linter"
on: [pull_request]
jobs:
lint:
name: Linter
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Run Linter
run: |
docker run --rm -v $PWD:/app composer sh -c \
"composer install --profile --ignore-platform-reqs && composer lint"