mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Merge tag '6.0.0-beta.1' into develop
6.0.0-beta.1
This commit is contained in:
commit
f82a884783
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -1,12 +1,6 @@
|
|||||||
name: Sonarcloud CI
|
name: Sonarcloud CI
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_dispatch:
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- develop
|
|
||||||
- 5.8-dev
|
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, reopened]
|
|
||||||
jobs:
|
jobs:
|
||||||
sonarcloud:
|
sonarcloud:
|
||||||
name: SonarCloud
|
name: SonarCloud
|
||||||
|
29
.github/workflows/qodana.yml
vendored
Normal file
29
.github/workflows/qodana.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
name: Qodana
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- develop
|
||||||
|
pull_request:
|
||||||
|
types: [ opened, synchronize, reopened ]
|
||||||
|
jobs:
|
||||||
|
qodana:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: 'Qodana Scan'
|
||||||
|
steps:
|
||||||
|
- name: Setup PHP with no coverage driver
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: '8.2'
|
||||||
|
coverage: none
|
||||||
|
extensions: bcmath, intl
|
||||||
|
env:
|
||||||
|
update: true
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
|
- name: 'Qodana Scan'
|
||||||
|
uses: JetBrains/qodana-action@main
|
||||||
|
env:
|
||||||
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
4
qodana.yaml
Normal file
4
qodana.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
profile:
|
||||||
|
name: qodana.starter
|
||||||
|
version: "1.0"
|
||||||
|
linter: jetbrains/qodana-php:2022.3-eap
|
Loading…
Reference in New Issue
Block a user