code_quality.yml 383 B

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