main
name: PHP CI on: [ push ] jobs: phpcs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Validate composer.json and composer.lock run: make validate - name: Install dependencies run: make install - name: Run linter run: make lint