Skip to content

Commit

Permalink
Merge pull request #51 from Icinga/chore/ci
Browse files Browse the repository at this point in the history
Add GitHub Action for phpcs/phplint
  • Loading branch information
martialblog committed May 13, 2024
2 parents d14addb + da1ef0f commit 8cd5b62
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 4 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: PHP Tests

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

jobs:
lint:
name: Static analysis for php ${{ matrix.php }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2']
os: ['ubuntu-latest']

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: phpcs

- name: Setup dependencies
run: composer require -n --no-progress overtrue/phplint

- name: PHP Lint
if: success() || matrix.allow_failure
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} -- .

- name: PHP CodeSniffer
if: success() || matrix.allow_failure
run: phpcs -wps --colors
2 changes: 0 additions & 2 deletions .github_changelog_generator

This file was deleted.

2 changes: 0 additions & 2 deletions .mailmap

This file was deleted.

0 comments on commit 8cd5b62

Please sign in to comment.