Skip to content

Update README for XOOPS Core version change to 2.7.x #3

Update README for XOOPS Core version change to 2.7.x

Update README for XOOPS Core version change to 2.7.x #3

Workflow file for this run

name: SonarCloud
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: sonarcloud-${{ github.ref }}
cancel-in-progress: true
jobs:
sonarcloud:
name: SonarCloud Analysis
runs-on: ubuntu-22.04
timeout-minutes: 15
if: github.repository == 'XOOPS/XoopsCore25'
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2
with:
php-version: "8.4"
extensions: intl, mbstring, mysqli
tools: composer
coverage: none
# Note: Coverage is handled separately by ci.yml; this workflow focuses on static analysis
- name: SonarCloud Scan
if: env.SONAR_TOKEN != ''
uses: SonarSource/sonarqube-scan-action@299e4b793aaa83bf2aba7c9c14bedbb485688ec4 # v7
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}