ForeachQ/brain-games

View on GitHub
.github/workflows/php-ci.yml

Summary

Maintainability
Test Coverage
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