update readme #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Codesniffer | |
| on: | |
| push: | |
| jobs: | |
| codesniffer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Check-out repository under GitHub workspace | |
| # https://github.com/actions/checkout | |
| - uses: actions/checkout@v2 | |
| # Step's name | |
| - name: Setup PHP | |
| # Action gives to setup the PHP environment to test application | |
| # https://github.com/shivammathur/setup-php | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| # Specify the PHP version | |
| php-version: '7.4' | |
| - name: Install | |
| # Install project | |
| run: make install | |
| - name: Run linter | |
| # Run Linter | |
| run: make lint |