Skip to content

Commit

Permalink
Add Github CI (WP-API#229)
Browse files Browse the repository at this point in the history
* Add Github CI

* Add PHP lints
  • Loading branch information
jonnynews authored Nov 21, 2023
1 parent 1d37154 commit 78d8055
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: PHP Lints

on:
push:
branches:
- master
- release/*
pull_request:

jobs:
lint-php:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
tools: composer, cs2pr

- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Setup Composer cache
uses: pat-s/always-upload-cache@v2.1.3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
${{ runner.os }}-
- name: Validate composer.json
run: composer --no-interaction validate --no-check-all

- name: Install dependencies
run: composer install --prefer-dist --no-suggest --no-progress --no-interaction

- name: Detect coding standard violations (PHPCS)
run: vendor/bin/phpcs -q --report=checkstyle --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 | cs2pr --graceful-warnings
1 change: 1 addition & 0 deletions bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ rm "composer.json"
rm "book.json"
rm -r "bin"
rm -r "docs"
rm -r ".github"

# Add any new files
svn status | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs svn add
Expand Down

0 comments on commit 78d8055

Please sign in to comment.