v1.0.0 #3
This file contains 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: CI | |
on: [push, pull_request] | |
jobs: | |
phpcs: | |
name: PHP CodeSniffer | |
runs-on: ubuntu-latest | |
container: | |
image: php:8.3 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install system dependencies | |
run: | | |
apt-get update && apt-get install -y unzip git | |
- name: Install Composer | |
run: | | |
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | |
- name: Composer Install | |
run: | | |
export COMPOSER_ALLOW_SUPERUSER=1 | |
composer install --no-progress --prefer-dist | |
- name: Run PHP CodeSniffer | |
run: | | |
composer lint |