From 5fb4faf53c9aedb42482dc5df0f02ffa91abf0f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarmo=20Sundstr=C3=B6m?= Date: Mon, 12 Jan 2026 10:34:55 +0200 Subject: [PATCH] Add sonarcloud ci --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 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 0000000..f006bfb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +on: + pull_request: + push: + branches: + - main +name: CI +jobs: + tests: + strategy: + matrix: + php-versions: ['8.4'] + uses: city-of-helsinki/drupal-gh-actions/.github/workflows/module-tests.yml@main + with: + php_version: ${{ matrix.php-versions }} + secrets: + sonarcloud_token: ${{ secrets.SONAR_TOKEN }}