From 7185d7854fb9cd467857b6e86456e34a41b8db95 Mon Sep 17 00:00:00 2001 From: salacr Date: Thu, 17 Apr 2025 08:31:05 +0200 Subject: [PATCH] Add PHP_CodeSniffer to pipeline (#1044) --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml 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