Skip to content

Commit a24822c

Browse files
committed
add conarcloud
1 parent 6e8e89d commit a24822c

File tree

3 files changed

+90
-95
lines changed

3 files changed

+90
-95
lines changed

.github/workflows/workflow.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,15 @@ jobs:
2323
uses: shivammathur/setup-php@v2
2424
with:
2525
# Specify the PHP version
26-
php-version: '8.2'
26+
php-version: '8.3'
2727
- name: Install
2828
# Install project
2929
run: make install
3030
- name: Run linter
3131
# Run Linter
3232
run: make lint
33-
# Publish code coverage on Code Climate
34-
# https://github.com/paambaati/codeclimate-action
35-
# NOTE: uncomment for using workflow
36-
# - name: Run test & publish code coverage
37-
# uses: paambaati/codeclimate-action@v5
38-
# # Add Code Climate secret key
39-
# env:
40-
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
41-
# with:
42-
# coverageCommand: make test-coverage
43-
# coverageLocations: build/logs/clover.xml:clover
44-
# debug: true
33+
34+
- name: SonarQube Scan
35+
uses: SonarSource/sonarqube-scan-action@v5
36+
env:
37+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"require": {
3030
"illuminate/collections": "^12.0",
31-
"nesbot/carbon": "^3.8",
31+
"nesbot/carbon": "^3.9",
3232
"symfony/string": "^7.2",
3333
"phpstan/phpstan": "^2.1"
3434
},

0 commit comments

Comments
 (0)