mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
19 lines
362 B
YAML
19 lines
362 B
YAML
name: Qodana
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
qodana:
|
|
runs-on: ubuntu-latest
|
|
name: 'Qodana Scan'
|
|
steps:
|
|
- name: 'Qodana Scan'
|
|
uses: JetBrains/qodana-action@main
|
|
env:
|
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|