Skip to content

Commit

Permalink
Merge branch '8.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 6, 2019
2 parents 7d0f2e4 + 36c55e1 commit 0b538c2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions

on:
- push
- pull_request

name: CI

jobs:
php-cs-fixer:
name: Static Code Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- name: Run friendsofphp/php-cs-fixer
uses: docker://php:7.3-cli
with:
args: ./tools/php-cs-fixer fix --diff-format=udiff --dry-run --show-progress=dots --using-cache=no --verbose
8 changes: 0 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ notifications:

jobs:
include:
- stage: "Static Code Analysis"
php: 7.3
env:
- TOOL="php-cs-fixer"
install:
- phpenv config-rm xdebug.ini
script:
- ./tools/php-cs-fixer fix --dry-run -v --show-progress=dots --diff-format=udiff
- stage: "Static Code Analysis"
php: 7.3
env:
Expand Down

0 comments on commit 0b538c2

Please sign in to comment.