mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Bumps [JetBrains/qodana-action](https://github.com/JetBrains/qodana-action) from 2022.3.4 to 2023.1.0. - [Release notes](https://github.com/JetBrains/qodana-action/releases) - [Commits](https://github.com/JetBrains/qodana-action/compare/v2022.3.4...v2023.1.0) --- updated-dependencies: - dependency-name: JetBrains/qodana-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
487 B
YAML
25 lines
487 B
YAML
name: Qodana
|
|
on:
|
|
schedule:
|
|
- cron: "0 20 * * *"
|
|
workflow_dispatch:
|
|
branches:
|
|
- develop
|
|
# push:
|
|
# branches:
|
|
# - develop
|
|
|
|
jobs:
|
|
qodana:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
#php-version: '7.1'
|
|
- name: 'Qodana Scan'
|
|
uses: JetBrains/qodana-action@v2023.1.0
|
|
#with:
|
|
# php-version: '7.1'
|
|
env:
|
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |