code_quality.yml 412 B

12345678910111213141516171819202122
  1. name: Qodana
  2. on:
  3. schedule:
  4. - cron: "0 20 * * *"
  5. workflow_dispatch:
  6. branches:
  7. - develop
  8. # push:
  9. # branches:
  10. # - develop
  11. jobs:
  12. qodana:
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v3
  16. with:
  17. fetch-depth: 0
  18. - name: 'Qodana Scan'
  19. uses: JetBrains/qodana-action@v2022.3.0
  20. env:
  21. QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}