mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-29 21:01:25 +01:00
20 lines
383 B
YAML
20 lines
383 B
YAML
name: Qodana
|
|
on:
|
|
schedule:
|
|
- cron: "0 20 * * *"
|
|
# workflow_dispatch:
|
|
# push:
|
|
# branches:
|
|
# - develop
|
|
|
|
jobs:
|
|
qodana:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 'Qodana Scan'
|
|
uses: JetBrains/qodana-action@v2022.3.0
|
|
env:
|
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |