From: salacr Date: Thu, 17 Apr 2025 06:31:05 +0000 (+0200) Subject: Add PHP_CodeSniffer to pipeline (#1044) X-Git-Tag: v5.3.0~38 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=7185d7854fb9cd467857b6e86456e34a41b8db95;p=adminer.git Add PHP_CodeSniffer to pipeline (#1044) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..fb841316 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + pull_request: + branches: [ master ] + +jobs: + build-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: php-actions/composer@v6 + - uses: php-actions/phpcs@v1 + with: + path: adminer/ + standard: phpcs.xml