Skip to content

Commit

Permalink
ci: update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfortmeyer committed Sep 2, 2023
1 parent aa5fea7 commit 1bf2a80
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 9 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
name: auto-merge
name: Auto Merge Dependabot PRs

on:
pull_request:
pull_request_target:
paths-ignore:
- '**.php'
- '**.yml'
- '**.md'
- '**.svg'
- '**.xml'
- '.gitattributes'
- '.gitignore'

jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/php-latest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHP Composer
name: PHP Build Latest and Nightly

on:
schedule:
Expand All @@ -7,13 +7,14 @@ on:
jobs:
build:
runs-on: ${{ matrix.operating-system }}
continue-on-error: true
strategy:
matrix:
operating-system: ['ubuntu-22.04', 'ubuntu-20.04', 'windows-latest', 'macos-latest']
php-versions: [latest, nightly]
phpunit-versions: ['latest']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -25,7 +26,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
Expand Down
58 changes: 58 additions & 0 deletions .github/workflows/phpmd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# PHPMD is a spin-off project of PHP Depend and
# aims to be a PHP equivalent of the well known Java tool PMD.
# What PHPMD does is: It takes a given PHP source code base
# and look for several potential problems within that source.
# These problems can be things like:
# Possible bugs
# Suboptimal code
# Overcomplicated expressions
# Unused parameters, methods, properties
# More details at https://phpmd.org/

name: PHPMD

on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
paths:
- '**.php'
- '!tests/**'
- '!examples/**'
- '!config/**'
- '!.phan/**'

permissions:
contents: read

jobs:
PHPMD:
name: Run PHPMD scanning
runs-on: ubuntu-latest
permissions:
contents: read # for checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@aa1fe473f9c687b6fb896056d771232c0bc41161
with:
coverage: none
tools: phpmd

- name: Run PHPMD
run: phpmd ./src sarif codesize --reportfile phpmd-results.sarif
continue-on-error: true

- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: phpmd-results.sarif
wait-for-processing: true
10 changes: 7 additions & 3 deletions .github/workflows/php.yml → .github/workflows/pr-quality.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: PHP Composer
name: Pull Request Quality Check

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths:
- 'composer.*'
- '**.php'

jobs:
build:
Expand Down Expand Up @@ -33,6 +34,9 @@ jobs:
- name: Install dependencies
run: composer update --no-ansi --no-interaction --prefer-dist --no-progress --ignore-platform-req=ext-ast && composer dumpautoload

- name: Scanning for lint errors
run: composer ci:lint

- name: Run test suite
run: composer ci:test

Expand Down

0 comments on commit 1bf2a80

Please sign in to comment.