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 2023.1.4 to 2023.1.5. - [Release notes](https://github.com/jetbrains/qodana-action/releases) - [Commits](https://github.com/jetbrains/qodana-action/compare/v2023.1.4...v2023.1.5) --- updated-dependencies: - dependency-name: JetBrains/qodana-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
522 B
YAML
28 lines
522 B
YAML
name: Qodana
|
|
on:
|
|
schedule:
|
|
- cron: "0 20 * * 1,3,5"
|
|
workflow_dispatch:
|
|
branches:
|
|
- develop
|
|
# push:
|
|
# branches:
|
|
# - develop
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
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.5
|
|
#with:
|
|
# php-version: '7.1'
|
|
env:
|
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |