mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 01:06:46 +00:00
Merge branch 'main' into develop
This commit is contained in:
2
.github/workflows/cleanup.yml
vendored
2
.github/workflows/cleanup.yml
vendored
@@ -57,6 +57,8 @@ jobs:
|
|||||||
const workflows = [
|
const workflows = [
|
||||||
'cleanup.yml',
|
'cleanup.yml',
|
||||||
'depsreview.yaml',
|
'depsreview.yaml',
|
||||||
|
'qodana.yml',
|
||||||
|
'closed-issues.yml',
|
||||||
'laravel.yml',
|
'laravel.yml',
|
||||||
'lock.yml',
|
'lock.yml',
|
||||||
'stale.yml'
|
'stale.yml'
|
||||||
|
2
.github/workflows/qodana.yml
vendored
2
.github/workflows/qodana.yml
vendored
@@ -32,6 +32,6 @@ jobs:
|
|||||||
php artisan ide-helper:generate;
|
php artisan ide-helper:generate;
|
||||||
|
|
||||||
- name: 'Qodana Scan'
|
- name: 'Qodana Scan'
|
||||||
uses: JetBrains/qodana-action@main
|
uses: JetBrains/qodana-action@v2023.1.0
|
||||||
env:
|
env:
|
||||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||||
|
21
.github/workflows/sonarcloud.yaml
vendored
Normal file
21
.github/workflows/sonarcloud.yaml
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: Sonarcloud
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- develop
|
||||||
|
pull_request:
|
||||||
|
types: [opened, synchronize, reopened]
|
||||||
|
jobs:
|
||||||
|
sonarcloud:
|
||||||
|
name: SonarCloud
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
|
- name: SonarCloud Scan
|
||||||
|
uses: SonarSource/sonarcloud-github-action@master
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_PERSONAL_ACCESS_TOKEN }}
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
17
sonar-project.properties
Normal file
17
sonar-project.properties
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
sonar.projectKey=firefly-iii_firefly-iii
|
||||||
|
sonar.organization=firefly-iii
|
||||||
|
|
||||||
|
# This is the name and version displayed in the SonarCloud UI.
|
||||||
|
#sonar.projectName=firefly-iii
|
||||||
|
#sonar.projectVersion=1.0
|
||||||
|
|
||||||
|
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
|
||||||
|
#sonar.sources=.
|
||||||
|
|
||||||
|
# Encoding of the source code. Default is default system encoding
|
||||||
|
#sonar.sourceEncoding=UTF-8
|
||||||
|
|
||||||
|
|
||||||
|
sonar.projectVersion=6.0.11
|
||||||
|
sonar.sources=app,bootstrap,database,resources/assets,resources/views,routes,tests
|
||||||
|
sonar.sourceEncoding=UTF-8
|
Reference in New Issue
Block a user